diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-02 13:15:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-02 13:15:30 +0000 |
commit | 9238c4e3aa9df5d0726cf3a03e632bc3d3969711 (patch) | |
tree | e5d95695014b33a99e19c4b19472e9dc69db7c5d /src/mir_app/res/resource.rc | |
parent | 2481102c6541df37a773569dd4d67b579f04d819 (diff) |
two new flags of TMO_MenuItem:
- CMIF_SYSTEM: filters a menu item out of options' editor;
- CMIF_UNMOVABLE: denies attempts to change the item's position;
- CMIF_SYSTEM applied to frames' menu;
- CMIF_UNMOVABLE applied to Jabber protocol menu items;
git-svn-id: http://svn.miranda-ng.org/main/trunk@14468 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_app/res/resource.rc')
-rw-r--r-- | src/mir_app/res/resource.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/res/resource.rc b/src/mir_app/res/resource.rc index 7b86ad92ea..ef4583b099 100644 --- a/src/mir_app/res/resource.rc +++ b/src/mir_app/res/resource.rc @@ -487,7 +487,7 @@ BEGIN GROUPBOX "Menu objects",IDC_STATIC,5,2,140,94
LISTBOX IDC_MENUOBJECTS,11,13,128,79,WS_VSCROLL | WS_TABSTOP
GROUPBOX "Menu items",IDC_STATIC,149,2,161,248
- CONTROL "Tree1",IDC_MENUITEMS,"SysTreeView32",TVS_SHOWSELALWAYS | WS_DISABLED | WS_BORDER | WS_HSCROLL | WS_TABSTOP,156,13,148,212
+ CONTROL "Tree1",IDC_MENUITEMS,"SysTreeView32",TVS_SHOWSELALWAYS | TVS_HASLINES | WS_DISABLED | WS_BORDER | WS_HSCROLL | WS_TABSTOP,156,13,148,212
GROUPBOX "Protocol menus",IDC_STATIC,5,100,140,37
CONTROL "Move to the main menu",IDC_RADIO1,"Button",BS_AUTORADIOBUTTON,11,111,128,8
CONTROL "Move to the status bar",IDC_RADIO2,"Button",BS_AUTORADIOBUTTON,11,123,130,8
|