diff options
| author | 2015-12-23 06:02:19 +0000 | |
|---|---|---|
| committer | 2015-12-23 06:20:51 +0000 | |
| commit | 3e02cab5309dd084370d90d5260da61c83c9588c (patch) | |
| tree | 359c4739eca96e5969747a6c7631c82e465dc756 /src/modules | |
| parent | fix avatar choose dialog (diff) | |
| download | KVIrc-3e02cab5309dd084370d90d5260da61c83c9588c.tar.gz KVIrc-3e02cab5309dd084370d90d5260da61c83c9588c.tar.bz2 KVIrc-3e02cab5309dd084370d90d5260da61c83c9588c.zip | |
adjust message and increase dialog minimum size
make this message slightly more readable intead of a wall of text.
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/options/OptionsWidget_identity.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/modules/options/OptionsWidget_identity.cpp b/src/modules/options/OptionsWidget_identity.cpp index 4972c0c40..c5c3e7764 100644 --- a/src/modules/options/OptionsWidget_identity.cpp +++ b/src/modules/options/OptionsWidget_identity.cpp @@ -206,9 +206,8 @@ AvatarSelectionDialog::AvatarSelectionDialog(QWidget * par,const QString &szInit QVBoxLayout * layout = new QVBoxLayout(this); QString msg = __tr2qs_ctx("Please select an avatar image.\n\n" \ - "The full path to a local file or an image on the Web can be used. " \ - "If you wish to use a local image file, click the \"Browse\"" \ - "button to browse local folders. " \ + "The full path to a local file or an image on the Web can be used.\n" \ + "If you wish to use a local image file, click the \"Browse\" button to browse local folders.\n\n" \ "The full URL for an image (including http:// or https://) can be entered manually.","options"); QLabel * l = new QLabel(msg); @@ -220,7 +219,7 @@ AvatarSelectionDialog::AvatarSelectionDialog(QWidget * par,const QString &szInit m_pLineEdit = new QLineEdit; m_pLineEdit->setText(szInitialPath); - m_pLineEdit->setMinimumWidth(300); + m_pLineEdit->setMinimumWidth(450); QHBoxLayout * pLineEditLayout = new QHBoxLayout; |
