diff options
author | George Hazan <ghazan@miranda.im> | 2019-05-04 14:10:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-05-04 14:10:10 +0300 |
commit | 627f2b6feeb42f64d9e81c4a2de3b6a3bfbe225d (patch) | |
tree | e0e23310cfda314c84017069e465b4f4e229fe49 | |
parent | a35ef5357c0cdfea74c0aa0ff78eae446ff050aa (diff) |
fix for a combobox type
-rw-r--r-- | plugins/Import/res/resource.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Import/res/resource.rc b/plugins/Import/res/resource.rc index ceb0c8cf4f..ec28912e3c 100644 --- a/plugins/Import/res/resource.rc +++ b/plugins/Import/res/resource.rc @@ -143,7 +143,7 @@ EXSTYLE WS_EX_APPWINDOW FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
LTEXT "Choose file type:",IDC_STATIC,8,7,322,8
- COMBOBOX IDC_FILETYPE,7,18,322,12,CBS_DROPDOWN | CBS_SORT | WS_VSCROLL | WS_TABSTOP
+ COMBOBOX IDC_FILETYPE,7,18,322,12,CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
LTEXT "Enter file name for import:",IDC_STATIC,8,35,322,8
EDITTEXT IDC_FILENAME,7,47,321,15,ES_AUTOHSCROLL
PUSHBUTTON "...",IDC_OPEN_FILE,332,47,21,15,0,WS_EX_STATICEDGE
|