From 690ff68a9973fd7ad99b70f6b8a8943e6a3c1c8d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 21 Jan 2014 09:07:12 +0100 Subject: [PATCH] Add FIXME --- qutebrowser/widgets/statusbar.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qutebrowser/widgets/statusbar.py b/qutebrowser/widgets/statusbar.py index 3e6a3d54e..c263139aa 100644 --- a/qutebrowser/widgets/statusbar.py +++ b/qutebrowser/widgets/statusbar.py @@ -119,6 +119,8 @@ class StatusText(QLabel): def set_perc(self, x, y): """Setter to be used as a Qt slot""" if y == 0: + # FIXME we currently get the _top_ of the frame position, so this + # will never happen self.scrollperc = '[top]' else: self.scrollperc = '[{}%]'.format(y)