Skip to content

Commit

Permalink
manager: make the window bigger
Browse files Browse the repository at this point in the history
Closes #10
  • Loading branch information
cfillion committed Sep 6, 2016
1 parent 6b8bba0 commit 7c7dc36
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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},
});

Expand Down
18 changes: 9 additions & 9 deletions src/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7c7dc36

Please sign in to comment.