diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-16 21:27:05 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-16 21:27:05 +0300 |
commit | e170d02c243cd6047e82ba0ecb939da3245a6a3f (patch) | |
tree | 50d12110b7b9ce4d5772d258b284e75b293de698 /plugins/Scriver/src/tabs.cpp | |
parent | b996b817ffa3e54694eccfd061bef177e25ec0f0 (diff) |
Scriver:
- fix for a problem with the initial container resize;
- useless class InfobarWindowData removed
- useless header file infobar.h removed;
- version bump
Diffstat (limited to 'plugins/Scriver/src/tabs.cpp')
-rw-r--r-- | plugins/Scriver/src/tabs.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Scriver/src/tabs.cpp b/plugins/Scriver/src/tabs.cpp index 17e62a0db6..6de36d2bac 100644 --- a/plugins/Scriver/src/tabs.cpp +++ b/plugins/Scriver/src/tabs.cpp @@ -688,7 +688,7 @@ static INT_PTR CALLBACK DlgProcParentWindow(HWND hwndDlg, UINT msg, WPARAM wPara dat->hwndStatus = CreateWindowEx(0, STATUSCLASSNAME, nullptr, WS_CHILD | WS_VISIBLE | SBARS_SIZEGRIP, 0, 0, 0, 0, hwndDlg, nullptr, g_hInst, nullptr);
dat->isChat = newData->isChat;
SendMessage(dat->hwndStatus, SB_SETMINHEIGHT, GetSystemMetrics(SM_CYSMICON), 0);
- //SetupStatusBar(dat);
+ SetupStatusBar(dat);
dat->hwndTabs = GetDlgItem(hwndDlg, IDC_TABS);
dat->hwndActive = nullptr;
SetWindowLongPtr(hwndDlg, GWLP_USERDATA, (LONG_PTR)dat);
@@ -720,6 +720,8 @@ static INT_PTR CALLBACK DlgProcParentWindow(HWND hwndDlg, UINT msg, WPARAM wPara if (!savePerContact && db_get_b(0, SRMMMOD, SRMSGSET_CASCADE, SRMSGDEFSET_CASCADE))
WindowList_Broadcast(g_dat.hParentWindowList, DM_CASCADENEWWINDOW, (WPARAM)hwndDlg, (LPARAM)&dat->windowWasCascaded);
+ PostMessage(hwndDlg, WM_SIZE, 0, 0);
+
HMENU hMenu = GetSystemMenu(hwndDlg, FALSE);
InsertMenu(hMenu, 0, MF_BYPOSITION | MF_SEPARATOR, 0, nullptr);
if (dat->bTopmost) {
|