From 785bb81c6bc672b55ca20910d2d9599986903753 Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Tue, 13 Jan 2015 08:38:57 +0100 Subject: [PATCH] [Qt] remove size grip to get rid of the right margin IMO nobody needs a size grip and it looks bad --- src/qt/bitcoingui.cpp | 3 +++ 1 file changed, 3 insertions(+) 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();