From afa7a1a9a0ac064f883d31a8928cd9189c28af5d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 2 Oct 2015 08:01:45 +0200 Subject: [PATCH] Remove broken margin-left for progress bar. Closes #125 (by obsoleting it). --- qutebrowser/mainwindow/statusbar/progress.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/qutebrowser/mainwindow/statusbar/progress.py b/qutebrowser/mainwindow/statusbar/progress.py index 574fc2c46..2d2747431 100644 --- a/qutebrowser/mainwindow/statusbar/progress.py +++ b/qutebrowser/mainwindow/statusbar/progress.py @@ -31,14 +31,10 @@ class Progress(QProgressBar): """The progress bar part of the status bar.""" - # FIXME for some reason, margin-left is not shown - # https://github.com/The-Compiler/qutebrowser/issues/125 - STYLESHEET = """ QProgressBar { border-radius: 0px; border: 2px solid transparent; - margin-left: 1px; background-color: transparent; }