diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-26 12:35:23 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-26 12:35:32 +0100 |
commit | ca7880358c2be56935e861f2212967ecb1123c05 (patch) | |
tree | b5844a49292b916043786801aaf4ca52abd95f8b /src/qt/bitcoingui.cpp | |
parent | 2fae1875ea9e44c46d6cc3e679b5500f4c783ea4 (diff) | |
parent | 785bb81c6bc672b55ca20910d2d9599986903753 (diff) |
Merge pull request #5628
785bb81 [Qt] remove size grip to get rid of the right margin (Jonas Schnelli)
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 3d41dc89f1..09f784387e 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -164,6 +164,9 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) : // Create status bar statusBar(); + + // Disable size grip because it looks ugly and nobody needs it + statusBar()->setSizeGripEnabled(false); // Status bar notification icons QFrame *frameBlocks = new QFrame(); |