diff options
| author | 2016-02-04 09:17:04 +0000 | |
|---|---|---|
| committer | 2016-02-04 18:23:04 +0000 | |
| commit | 34e66f9d5445e147b83e62a1f95726c1b11a061b (patch) | |
| tree | 2bec59e5db7fbcb403ade05bb18bd8c08523eb2e /src/modules/options/OptionsDialog.cpp | |
| parent | cleanup: tooltip remove <center> formatting (diff) | |
| download | KVIrc-34e66f9d5445e147b83e62a1f95726c1b11a061b.tar.gz KVIrc-34e66f9d5445e147b83e62a1f95726c1b11a061b.tar.bz2 KVIrc-34e66f9d5445e147b83e62a1f95726c1b11a061b.zip | |
reduce line break space between paragraphs
This is extremely annoying, removing <br> the space is too little,
While with <br> the space is too much.
Trying things like <p style="margin-bottom:15px;"> (or any value other than 15px) has 0 effect
So hate <br> all you want between the <p></p> but nothing else has the same effect as this.
As is with <br style="line-height:5px;"/> the sapcing is more or less ideal here.
If you can fix this with similar results not using <br> please enlighten me.
Diffstat (limited to 'src/modules/options/OptionsDialog.cpp')
| -rw-r--r-- | src/modules/options/OptionsDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/options/OptionsDialog.cpp b/src/modules/options/OptionsDialog.cpp index 7e91abc56..8da8fa63c 100644 --- a/src/modules/options/OptionsDialog.cpp +++ b/src/modules/options/OptionsDialog.cpp @@ -146,11 +146,11 @@ OptionsDialog::OptionsDialog(QWidget * par,const QString &szGroup,bool bModal) "<p>" \ "%2" \ "</p>" \ - "<br>" \ + "<br style=\"line-height:5px;\"/>" \ "<p>" \ "%3" \ "</p>" \ - "<br>" \ + "<br style=\"line-height:5px;\"/>" \ "<p>" \ "%4" \ "</p>" \ |
