diff options
| author | 2016-02-01 01:55:56 +0000 | |
|---|---|---|
| committer | 2016-02-02 16:25:06 +0000 | |
| commit | c5ebccbf3e6b231d6b38583c485ca51e294b6af9 (patch) | |
| tree | b27ccfc320d12d23ba85dd0b12016d4dc9e8aadd /src/modules | |
| parent | ListWindow: remove tooltip center formatting and fix missed tooltip capitaliz... (diff) | |
| download | KVIrc-c5ebccbf3e6b231d6b38583c485ca51e294b6af9.tar.gz KVIrc-c5ebccbf3e6b231d6b38583c485ca51e294b6af9.tar.bz2 KVIrc-c5ebccbf3e6b231d6b38583c485ca51e294b6af9.zip | |
OptionsWidget_mediaTypes: remove tooltip center formatting
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/options/OptionsWidget_mediaTypes.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/options/OptionsWidget_mediaTypes.cpp b/src/modules/options/OptionsWidget_mediaTypes.cpp index 274268425..42141ae5c 100644 --- a/src/modules/options/OptionsWidget_mediaTypes.cpp +++ b/src/modules/options/OptionsWidget_mediaTypes.cpp @@ -113,15 +113,15 @@ OptionsWidget_mediaTypes::OptionsWidget_mediaTypes(QWidget * parent) layout()->addWidget(l,6,0); m_pCommandline = new QLineEdit(this); layout()->addWidget(m_pCommandline,6,1,1,2); - mergeTip(m_pCommandline,__tr2qs_ctx("<center>This field contains the command to execute to open a local file.<br>" \ - "<tt>$0</tt> is used in place of the filename</center>","options")); + mergeTip(m_pCommandline,__tr2qs_ctx("This field contains the command to execute to open a local file.<br>" \ + "<tt>$0</tt> is used in place of the filename","options")); l = new QLabel(__tr2qs_ctx("Remote open command:","options"),this); layout()->addWidget(l,7,0); m_pRemoteExecCommandline = new QLineEdit(this); layout()->addWidget(m_pRemoteExecCommandline,7,1,1,2); - mergeTip(m_pRemoteExecCommandline,__tr2qs_ctx("<center>This field contains the command to execute when automatically opening a received file.<br>" \ - "<tt>$0</tt> is used in place of the filename</center>","options")); + mergeTip(m_pRemoteExecCommandline,__tr2qs_ctx("This field contains the command to execute when automatically opening a received file.<br>" \ + "<tt>$0</tt> is used in place of the filename","options")); l = new QLabel(__tr2qs_ctx("Icon:","options"),this); layout()->addWidget(l,8,0); |
