diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Tox/res/resource.rc | 12 | ||||
-rw-r--r-- | protocols/Tox/src/tox_options.cpp | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/protocols/Tox/res/resource.rc b/protocols/Tox/res/resource.rc index 64dc9b5e7a..dc60b0fb0a 100644 --- a/protocols/Tox/res/resource.rc +++ b/protocols/Tox/res/resource.rc @@ -42,13 +42,13 @@ STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_SYSMENU EXSTYLE WS_EX_CONTROLPARENT
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
- LTEXT "Username:",IDC_STATIC,12,20,54,12
- EDITTEXT IDC_USERNAME,66,19,234,12,ES_AUTOHSCROLL
- LTEXT "Data file:",IDC_STATIC,12,38,54,12
- EDITTEXT IDC_DATAPATH,66,36,214,14,ES_AUTOHSCROLL
+ LTEXT "Username:",IDC_STATIC,12,20,67,12
+ EDITTEXT IDC_USERNAME,81,19,219,12,ES_AUTOHSCROLL
+ LTEXT "Data file:",IDC_STATIC,12,38,67,12
+ EDITTEXT IDC_DATAPATH,81,36,203,14,ES_AUTOHSCROLL
PUSHBUTTON "...",IDC_BROWSE,284,36,16,14
- LTEXT "Default group:",IDC_STATIC,12,56,54,12
- EDITTEXT IDC_GROUP,66,55,234,12,ES_AUTOHSCROLL
+ LTEXT "Default group:",IDC_STATIC,12,56,67,12
+ EDITTEXT IDC_GROUP,81,55,219,12,ES_AUTOHSCROLL
GROUPBOX "Connection settings",IDC_STATIC,7,80,298,73
CONTROL "Disable UDP (force Tox to use TCP)",IDC_DISABLE_UDP,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,96,288,10
diff --git a/protocols/Tox/src/tox_options.cpp b/protocols/Tox/src/tox_options.cpp index 8d60339a62..ccf6ae571e 100644 --- a/protocols/Tox/src/tox_options.cpp +++ b/protocols/Tox/src/tox_options.cpp @@ -57,7 +57,7 @@ INT_PTR CALLBACK CToxProto::MainOptionsProc(HWND hwnd, UINT uMsg, WPARAM wParam, GetDlgItemTextA(hwnd, IDC_DATAPATH, dataPath, SIZEOF(dataPath));
char filter[MAX_PATH] = "";
- mir_snprintf(filter, MAX_PATH, "%s\0*.*\0", Translate("All Files (*.*)"));
+ mir_snprintf(filter, MAX_PATH, "%s\0*.*\0", Translate("All files (*.*)"));
OPENFILENAMEA ofn = { 0 };
ofn.lStructSize = sizeof(ofn);
|