diff options
author | George Hazan <ghazan@miranda.im> | 2021-03-29 19:00:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-03-29 19:00:04 +0300 |
commit | 763dc81bdc7ef636d6477f2933876e80ca8fc58d (patch) | |
tree | 1c6653e78465da7af5a1daaa04ca5261f25e12b9 /plugins/Sessions/res | |
parent | 89a9193b6c6a8f87314634618b6893c8b62473aa (diff) |
Sessions:
- fixes #2816 (Sessions: "Save and close" option closes message log instead of container);
- massive code reordering;
- session saving dialog -> UI classes
Diffstat (limited to 'plugins/Sessions/res')
-rw-r--r-- | plugins/Sessions/res/Sessions.rc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Sessions/res/Sessions.rc b/plugins/Sessions/res/Sessions.rc index bf5fc4cae0..199996ab26 100644 --- a/plugins/Sessions/res/Sessions.rc +++ b/plugins/Sessions/res/Sessions.rc @@ -67,7 +67,7 @@ BEGIN PUSHBUTTON "Edit",IDC_EDIT,119,132,42,13,WS_DISABLED
COMBOBOX IDC_LIST,9,107,107,30,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
LISTBOX IDC_OPCLIST,9,122,107,100,LBS_NOINTEGRALHEIGHT | LBS_NOSEL | WS_VSCROLL
- CONTROL "",IDC_EMCLIST,"CListControl",NOT WS_VISIBLE | WS_TABSTOP,9,122,107,100
+ CONTROL "",IDC_EMCLIST,"CListControl",NOT WS_VISIBLE | WS_TABSTOP | WS_CHILD,9,122,107,100
PUSHBUTTON "Delete",IDC_DEL,119,107,42,13
PUSHBUTTON "Save",IDC_SAVE,119,145,42,13,WS_DISABLED
GROUPBOX "Action on Exit",IDC_STATIC,170,11,128,75
@@ -109,6 +109,7 @@ BEGIN PUSHBUTTON "&Cancel",IDCANCEL,107,58,52,14
LTEXT "Enter session name:",IDC_STATIC,13,16,123,11
COMBOBOX IDC_LIST,12,30,148,65,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
+ CONTROL "",IDC_CLIST,"CListControl",NOT WS_VISIBLE | WS_TABSTOP | WS_CHILD,12,30,148,65
CONTROL "Save and Close",IDC_SANDCCHECK,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,19,46,137,10
CONTROL "adv.",IDC_SELCONTACTS,"Button",BS_AUTOCHECKBOX | BS_PUSHLIKE | BS_FLAT | WS_TABSTOP,136,4,24,10
END
|