diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-01-13 08:38:57 +0100 |
---|---|---|
committer | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-01-13 08:38:57 +0100 |
commit | 785bb81c6bc672b55ca20910d2d9599986903753 (patch) | |
tree | 6edb1a8f8aa719c678c807278d153fe34ca7ed26 /src | |
parent | 8d0fd4646099132f0a68d6c3d0da3a6a10ab9631 (diff) |
[Qt] remove size grip to get rid of the right margin
IMO nobody needs a size grip and it looks bad
Diffstat (limited to 'src')
-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 2810eae052..1e4eecc10d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -162,6 +162,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(); |