Changeset 1778 for trunk/dll/notebook.c
- Timestamp:
- Jun 27, 2014, 12:30:54 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/notebook.c
r1713 r1778 178 178 BOOL fStartMaximized; 179 179 BOOL fStartMinimized; 180 BOOL fSwitchTree ;180 BOOL fSwitchTreeOnDirChg; 181 181 BOOL fSwitchTreeExpand; 182 182 BOOL fSwitchTreeOnFocus; … … 1375 1375 WinCheckButton(hwnd, CFGT_COLLAPSEFIRST, fCollapseFirst); 1376 1376 WinCheckButton(hwnd, CFGT_SWITCHTREEONFOCUS, fSwitchTreeOnFocus); 1377 WinCheckButton(hwnd, CFGT_SWITCHTREE , fSwitchTree);1377 WinCheckButton(hwnd, CFGT_SWITCHTREEONDIRCHG, fSwitchTreeOnDirChg); 1378 1378 WinCheckButton(hwnd, CFGT_SWITCHTREEEXPAND, fSwitchTreeExpand); 1379 1379 WinCheckButton(hwnd, CFGT_SHOWENV, fShowEnv); … … 1457 1457 PrfWriteProfileData(fmprof, appname, "SwitchTreeExpand", 1458 1458 &fSwitchTreeExpand, sizeof(BOOL)); 1459 fSwitchTree = WinQueryButtonCheckstate(hwnd, CFGT_SWITCHTREE);1460 PrfWriteProfileData(fmprof, appname, "SwitchTree", &fSwitchTree ,1459 fSwitchTreeOnDirChg = WinQueryButtonCheckstate(hwnd, CFGT_SWITCHTREEONDIRCHG); 1460 PrfWriteProfileData(fmprof, appname, "SwitchTree", &fSwitchTreeOnDirChg, 1461 1461 sizeof(BOOL)); 1462 1462 fFollowTree = WinQueryButtonCheckstate(hwnd, CFGT_FOLLOWTREE); … … 3179 3179 3180 3180 case CFG9_HECTOR: 3181 fSwitchTree = TRUE;3181 fSwitchTreeOnDirChg = TRUE; 3182 3182 fSwitchTreeOnFocus = FALSE; 3183 3183 fSwitchTreeExpand = TRUE; … … 3295 3295 3296 3296 case CFG9_DEFAULT: 3297 fSwitchTree = TRUE;3297 fSwitchTreeOnDirChg = TRUE; 3298 3298 fSwitchTreeOnFocus = FALSE; 3299 3299 fSwitchTreeExpand = TRUE; … … 3449 3449 fFollowTree = TRUE; 3450 3450 fTopDir = FALSE; 3451 fSwitchTree = TRUE;3451 fSwitchTreeOnDirChg = TRUE; 3452 3452 fSwitchTreeOnFocus = FALSE; 3453 3453 fSwitchTreeExpand = TRUE; … … 3513 3513 fTileBackwards = TRUE; 3514 3514 ulCnrType = CCS_MULTIPLESEL; 3515 fSwitchTree = TRUE;3515 fSwitchTreeOnDirChg = TRUE; 3516 3516 fSwitchTreeOnFocus = FALSE; 3517 3517 fSwitchTreeExpand = TRUE; … … 3554 3554 fTileBackwards = FALSE; 3555 3555 ulCnrType = CCS_MULTIPLESEL | CCS_EXTENDSEL; 3556 fSwitchTree = FALSE;3556 fSwitchTreeOnDirChg = FALSE; 3557 3557 fSwitchTreeOnFocus = FALSE; 3558 3558 fSwitchTreeExpand = FALSE; … … 3611 3611 3612 3612 case CFG9_GREGG: 3613 fSwitchTree = TRUE;3613 fSwitchTreeOnDirChg = TRUE; 3614 3614 fSwitchTreeOnFocus = FALSE; 3615 3615 fSwitchTreeExpand = TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.