commit 113667d8ebba5e32f1481faff4450a06dbc44907
parent 521e943e8616d20a6c79d1d61665527d47748fd7
Author: cfillion <cfillion@users.noreply.github.com>
Date: Wed, 30 Dec 2015 01:00:06 -0500
add a Remove button in the configuration dialog
Diffstat:
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/resource.hpp b/src/resource.hpp
@@ -38,5 +38,6 @@
#define IDC_REPORT 202
#define IDC_LIST 203
#define IDC_IMPORT 204
+#define IDC_REMOVE 205
#endif
diff --git a/src/resource.rc b/src/resource.rc
@@ -32,6 +32,6 @@ BEGIN
LTEXT "Enabled remotes:", IDC_LABEL, 5, 5, 290, 10
CONTROL "", IDC_LIST, WC_LISTVIEW, LVS_REPORT | WS_BORDER, 5, 18, 290, 130
PUSHBUTTON "Import", IDC_IMPORT, 5, 160, 40, 14
- DEFPUSHBUTTON "OK", IDOK, 210, 160, 40, 14
- PUSHBUTTON "Cancel", IDCANCEL, 254, 160, 40, 14
+ PUSHBUTTON "Remove", IDC_REMOVE, 48, 160, 40, 14
+ DEFPUSHBUTTON "Close", IDOK, 244, 160, 50, 14
END