aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar un1versal2016-01-30 19:03:11 +0000
committerGravatar un1versal2016-02-02 16:25:03 +0000
commitd4cda7cfe47ffb3743046c1b03258849cfe1b5e1 (patch)
tree8a2e232cb296905d3d489dd9acd2b1cb6212a00a /src/modules
parentOptionsWidget_identity: remove tooltip center formatting (diff)
downloadKVIrc-d4cda7cfe47ffb3743046c1b03258849cfe1b5e1.tar.gz
KVIrc-d4cda7cfe47ffb3743046c1b03258849cfe1b5e1.tar.bz2
KVIrc-d4cda7cfe47ffb3743046c1b03258849cfe1b5e1.zip
OptionsWidget_irc: remove tooltip center formatting
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/options/OptionsWidget_irc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/options/OptionsWidget_irc.cpp b/src/modules/options/OptionsWidget_irc.cpp
index 0145fd744..8246e3217 100644
--- a/src/modules/options/OptionsWidget_irc.cpp
+++ b/src/modules/options/OptionsWidget_irc.cpp
@@ -48,10 +48,10 @@ OptionsWidget_ircGeneral::OptionsWidget_ircGeneral(QWidget * parent)
createLayout();
KviBoolSelector *b = addBoolSelector(0,0,0,0,__tr2qs_ctx("Minimize console after successful login","options"),KviOption_boolMinimizeConsoleAfterConnect);
- mergeTip(b,__tr2qs_ctx("<center>This option will cause KVIrc to minimize the console window after successfully logging into a server.</center>","options"));
+ mergeTip(b,__tr2qs_ctx("This option will cause KVIrc to minimize the console window after successfully logging into a server.","options"));
b = addBoolSelector(0,1,0,1,__tr2qs_ctx("Show network name in console window list entry","options"),KviOption_boolShowNetworkNameForConsoleWindowListEntry);
- mergeTip(b,__tr2qs_ctx("<center>This option will cause KVIrc to show the network name as the console window list entry instead of the server name. This is nice to keep on unless your servers are not organized in networks or you often connect to two servers of the same network.</center>","options"));
+ mergeTip(b,__tr2qs_ctx("This option will cause KVIrc to show the network name as the console window list entry instead of the server name. This is nice to keep on unless your servers are not organized in networks or you often connect to two servers of the same network.","options"));
addRowSpacer(0,2,0,2);
}
@@ -68,11 +68,11 @@ OptionsWidget_ircAdvanced::OptionsWidget_ircAdvanced(QWidget * parent)
createLayout();
KviBoolSelector *b = addBoolSelector(0,0,0,0,__tr2qs_ctx("Force immediate quit","options"),KviOption_boolForceBrutalQuit);
mergeTip(b,
- __tr2qs_ctx("<center>This option causes KVIrc to close " \
+ __tr2qs_ctx("This option causes KVIrc to close " \
"the connection immediately after sending the QUIT message.<br>" \
"When this option is disabled, KVIrc will wait for the server " \
"to close the connection.<br>" \
- "Note that if you use this, your QUIT message may be not displayed.</center>","options"));
+ "Note that if you use this, your QUIT message may be not displayed.","options"));
addBoolSelector(0,1,0,1,__tr2qs_ctx("Prepend gender info to real name","options"),KviOption_boolPrependGenderInfoToRealname);
addBoolSelector(0,2,0,2,__tr2qs_ctx("Prepend avatar info to real name","options"),KviOption_boolPrependAvatarInfoToRealname);
addBoolSelector(0,3,0,3,__tr2qs_ctx("Prepend smart nick color info to real name","options"),KviOption_boolPrependNickColorInfoToRealname);