diff options
| author | Jonas Schnelli <[email protected]> | 2015-01-13 08:38:57 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-01-13 08:38:57 +0100 |
| commit | 785bb81c6bc672b55ca20910d2d9599986903753 (patch) | |
| tree | 6edb1a8f8aa719c678c807278d153fe34ca7ed26 /src | |
| parent | Merge pull request #5640 (diff) | |
| download | discoin-785bb81c6bc672b55ca20910d2d9599986903753.tar.xz discoin-785bb81c6bc672b55ca20910d2d9599986903753.zip | |
[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 2810eae05..1e4eecc10 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(); |