diff options
| author | 2016-05-15 01:59:38 +0100 | |
|---|---|---|
| committer | 2016-05-15 05:30:40 +0100 | |
| commit | ab1d17b0ef185af1faeee23c428773740a12a0e5 (patch) | |
| tree | 6d456d4cf9f3004edec41f10a462b62bc57c1e2a /src/modules | |
| parent | OptionWidget_servers: fix indenting of newlines in toolltips source (diff) | |
| download | KVIrc-ab1d17b0ef185af1faeee23c428773740a12a0e5.tar.gz KVIrc-ab1d17b0ef185af1faeee23c428773740a12a0e5.tar.bz2 KVIrc-ab1d17b0ef185af1faeee23c428773740a12a0e5.zip | |
OptionsWidget_identity:fix tooltip src formating
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/options/OptionsWidget_identity.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/modules/options/OptionsWidget_identity.cpp b/src/modules/options/OptionsWidget_identity.cpp index 599f447bb..d281f22e1 100644 --- a/src/modules/options/OptionsWidget_identity.cpp +++ b/src/modules/options/OptionsWidget_identity.cpp @@ -740,19 +740,19 @@ OptionsWidget_identityProfile::OptionsWidget_identityProfile(QWidget * pParent) labels.append(__tr2qs_ctx("Name", "options")); labels.append(__tr2qs_ctx("Network", "options")); labels.append(__tr2qs_ctx("Nickname", "options")); - labels.append(__tr2qs_ctx("Alt. nickname", "options")); + labels.append(__tr2qs_ctx("Alt. Nickname", "options")); labels.append(__tr2qs_ctx("Username", "options")); - labels.append(__tr2qs_ctx("Real name", "options")); + labels.append(__tr2qs_ctx("Real Name", "options")); m_pTreeWidget->setHeaderLabels(labels); + m_pTreeWidget->setMinimumWidth(100); - KviTalToolTip::add(m_pTreeWidget, - __tr2qs_ctx("This is a set of rules to use profiles.<br>" - "KVIrc will use them to handle the user connection " - "data before the data is sent to the IRC server.<br>" - "This is useful if a user wants to use different data " - "on different networks without changing them at every " - "connection attempt.", - "options")); + KviTalToolTip::add(m_pTreeWidget, __tr2qs_ctx("This is a set of rules to use profiles.<br>" + "KVIrc will use them to handle the user connection " + "data before the data is sent to the IRC server.<br>" + "This is useful if a user wants to use different data " + "on different networks without changing them at every " + "connection attempt.", "options")); + pLayout->addWidget(m_pTreeWidget, 1, 0, 1, 3); connect(m_pTreeWidget, SIGNAL(itemSelectionChanged()), this, SLOT(toggleControls())); |
