commit f3181573fdae5e3976fc4b333ceeafa952be0c61
parent ee2ec08c8d1c0c32c85dec9f10beaa05e734a210
Author: cfillion <cfillion@users.noreply.github.com>
Date: Sat, 10 Sep 2016 16:37:24 -0400
manager: retweak the dialog size
Diffstat:
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/manager.cpp b/src/manager.cpp
@@ -48,8 +48,8 @@ void Manager::onInit()
disable(m_apply);
m_list = createControl<ListView>(IDC_LIST, ListView::Columns{
- {AUTO_STR("Name"), 140},
- {AUTO_STR("Index URL"), 440},
+ {AUTO_STR("Name"), 115},
+ {AUTO_STR("Index URL"), 415},
{AUTO_STR("State"), 60},
});
diff --git a/src/resource.rc b/src/resource.rc
@@ -25,21 +25,21 @@ BEGIN
DEFPUSHBUTTON "&OK", IDOK, 115, 240, 50, 14
END
-IDD_CONFIG_DIALOG DIALOGEX 0, 0, 400, 230
+IDD_CONFIG_DIALOG DIALOGEX 0, 0, 370, 210
STYLE DIALOG_STYLE
FONT DIALOG_FONT
CAPTION "ReaPack Configuration"
BEGIN
LTEXT "The repositories enabled in this list are used to populate the package list:",
- IDC_LABEL, 5, 5, 390, 10
+ IDC_LABEL, 5, 5, 360, 10
CONTROL "", IDC_LIST, WC_LISTVIEW, LVS_REPORT | LVS_SHOWSELALWAYS |
- WS_BORDER | WS_TABSTOP, 5, 18, 390, 190
- PUSHBUTTON "&Browse Packages...", IDC_BROWSE, 5, 211, 75, 14
- PUSHBUTTON "&Import...", IDC_IMPORT, 83, 211, 45, 14
- PUSHBUTTON "&Options...", IDC_OPTIONS, 131, 211, 45, 14
- DEFPUSHBUTTON "&OK", IDOK, 268, 211, 40, 14
- PUSHBUTTON "&Cancel", IDCANCEL, 311, 211, 40, 14
- PUSHBUTTON "&Apply", IDAPPLY, 354, 211, 40, 14
+ WS_BORDER | WS_TABSTOP, 5, 18, 360, 190
+ PUSHBUTTON "&Browse Packages...", IDC_BROWSE, 5, 191, 75, 14
+ PUSHBUTTON "&Import...", IDC_IMPORT, 83, 191, 45, 14
+ PUSHBUTTON "&Options...", IDC_OPTIONS, 131, 191, 45, 14
+ DEFPUSHBUTTON "&OK", IDOK, 238, 191, 40, 14
+ PUSHBUTTON "&Cancel", IDCANCEL, 281, 191, 40, 14
+ PUSHBUTTON "&Apply", IDAPPLY, 324, 191, 40, 14
END
IDD_ABOUT_DIALOG DIALOGEX 0, 0, 460, 267