Changes between Version 12 and Version 13 of Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook


Ignore:
Timestamp:
02/08/24 13:04:17 (10 months ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook

    v12 v13  
    218218
    219219{{{
    220 #if ARM64
     220void FileOperation(void)
     221{
     222#if ARM64
     223        CFormRect rect;
     224
    221225        FORM_INIT(Update, EventDownloadedFileShow, NULL, NULL, NULL, 0);
    222226
    223227        SetupMenuFormToUseFontSet(formUpdate, rect, 0.8 );
    224228
    225         FORM_ADD_BUTTON2(Update, Export, rect, "Export",        'X',  EventExport,      FORM_BUTTON_SHADOW, NULL);
     229        FORM_ADD_BUTTON2(Update, Export, rect, "Export",        'X',  EventExport,      FORM_BUTTON_SHADOW);
    226230        rect += invertBtnAdvanceY;
    227         FORM_ADD_BUTTON2(Update, Import, rect, "Import",        'I',  EventImport,      FORM_BUTTON_SHADOW, NULL);
     231        FORM_ADD_BUTTON2(Update, Import, rect, "Import",        'I',  EventImport,      FORM_BUTTON_SHADOW);
    228232#else
    229233        FORM_INIT(Update, EventDownloadedFileShow, NULL, NULL, NULL, 0);
     
    236240        FORM_RUN(Update);
    237241        FORM_HIDE(Update);
    238 
    239 }}}
    240 
     242}
     243}}}
     244