commit 7c7dc363ea858a51865ecae5e5ebdc29323a3101
parent 6b8bba0ee82f00bf018139c5b3510ffa6cbae13b
Author: cfillion <cfillion@users.noreply.github.com>
Date: Mon, 5 Sep 2016 22:53:04 -0400
manager: make the window bigger
Closes #10
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"), 110},
- {AUTO_STR("Index URL"), 350},
+ {AUTO_STR("Name"), 140},
+ {AUTO_STR("Index URL"), 440},
{AUTO_STR("State"), 60},
});
diff --git a/src/resource.rc b/src/resource.rc
@@ -25,20 +25,20 @@ BEGIN
DEFPUSHBUTTON "&OK", IDOK, 115, 240, 50, 14
END
-IDD_CONFIG_DIALOG DIALOGEX 0, 0, 330, 180
+IDD_CONFIG_DIALOG DIALOGEX 0, 0, 400, 230
STYLE DIALOG_STYLE
FONT DIALOG_FONT
CAPTION "ReaPack Configuration"
BEGIN
- LTEXT "Remote repositories:", IDC_LABEL, 5, 5, 320, 10
+ LTEXT "Remote repositories:", IDC_LABEL, 5, 5, 390, 10
CONTROL "", IDC_LIST, WC_LISTVIEW, LVS_REPORT | LVS_SHOWSELALWAYS |
- WS_BORDER | WS_TABSTOP, 5, 18, 320, 140
- PUSHBUTTON "&Browse Packages...", IDC_BROWSE, 5, 161, 75, 14
- PUSHBUTTON "&Import...", IDC_IMPORT, 83, 161, 45, 14
- PUSHBUTTON "&Options...", IDC_OPTIONS, 131, 161, 45, 14
- DEFPUSHBUTTON "&OK", IDOK, 198, 161, 40, 14
- PUSHBUTTON "&Cancel", IDCANCEL, 241, 161, 40, 14
- PUSHBUTTON "&Apply", IDAPPLY, 284, 161, 40, 14
+ 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
END
IDD_ABOUT_DIALOG DIALOGEX 0, 0, 460, 267