diff options
author | René Schümann <white06tiger@gmail.com> | 2015-03-26 20:39:16 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2015-03-26 20:39:16 +0000 |
commit | a02de2743a09366b17473f77567a8ca47a8db0d9 (patch) | |
tree | e1a356de0257a8c53b99faaeb377567948476c63 /plugins/MirOTR/res/resource.rc | |
parent | 5f2e4efe46fefa7cd11f275896954c24be37b568 (diff) |
MirOTR:
! fixed options dialog radio button grouping (resource.rc)
! fixed crash when trying to delete fingerprint in use (options.cpp)
* changed default OTR prefix to one that cannot be faked by other parties and added note about this fact to options (options.cpp)
+ small improvement to options. Reset prefix to default if user enters an empty one (options.cpp)
git-svn-id: http://svn.miranda-ng.org/main/trunk@12504 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/res/resource.rc')
-rw-r--r-- | plugins/MirOTR/res/resource.rc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/MirOTR/res/resource.rc b/plugins/MirOTR/res/resource.rc index d6cb4a330f..710afcaa17 100644 --- a/plugins/MirOTR/res/resource.rc +++ b/plugins/MirOTR/res/resource.rc @@ -53,27 +53,27 @@ STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_VISIBLE EXSTYLE WS_EX_CONTROLPARENT
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- LTEXT "",IDC_STATIC,0,0,1,1,NOT WS_GROUP | WS_TABSTOP
GROUPBOX "Default Policy",IDC_GRP_POLICY,5,3,139,60
- CONTROL "Always",IDC_RAD_ALWAYS,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,12,126,10
- CONTROL "Opportunistic",IDC_RAD_OPP,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,24,126,10
- CONTROL "Manual",IDC_RAD_MANUAL,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,12,36,126,10
- CONTROL "Never",IDC_RAD_NEVER,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,48,126,10
+ CONTROL "Always",IDC_RAD_ALWAYS,"Button",BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP,12,12,126,10
+ CONTROL "Opportunistic",IDC_RAD_OPP,"Button",BS_AUTORADIOBUTTON,12,24,126,10
+ CONTROL "Manual",IDC_RAD_MANUAL,"Button",BS_AUTORADIOBUTTON,12,36,126,10
+ CONTROL "Never",IDC_RAD_NEVER,"Button",BS_AUTORADIOBUTTON,12,48,126,10
CONTROL "End sessions on window close",IDC_CHK_ENDCLOSE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,70,265,10
CONTROL "End sessions when contacts go offline",IDC_CHK_ENDOFFLINE,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,82,265,10
CONTROL "Prefix encrypted IMs:",IDC_CHK_PREFIX,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,94,108,10
EDITTEXT IDC_ED_PREFIX,120,93,159,12,ES_AUTOHSCROLL | NOT WS_BORDER,WS_EX_CLIENTEDGE
+ LTEXT """?OTR? "" is a protected prefix and can't be faked",IDC_STATIC,23,106,271,8,SS_LEFT
CONTROL "Don't add encrypted messages to the history",IDC_CHK_PREVENTSAVE,
- "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,106,265,10
+ "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,118,265,10
CONTROL "Also remove OTR system messages",IDC_CHK_PREVENTSYSSAVE,
- "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,117,245,10
+ "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,130,245,10
CONTROL "Show OTR system messages inline",IDC_CHK_MSGINLINE,
- "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,130,265,10
- CONTROL "Show OTR system messages as popup",IDC_CHK_MSGPOPUP,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,142,265,10
+ CONTROL "Show OTR system messages as popup",IDC_CHK_MSGPOPUP,
+ "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,154,265,10
CONTROL "Show verification dialog when receiving unverified fingerprint",IDC_CHK_AUTOSHOW_VERIFY,
- "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,166,265,10
+ "Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,175,265,10
END
IDD_OPT_PROTO DIALOGEX 0, 0, 296, 220
|