Set COLUM_WIDTHS for :help completion

Fixes #2287
This commit is contained in:
Florian Bruhin 2017-02-08 09:11:58 +01:00
parent c4a74c7a34
commit 12ed226ce6
2 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,7 @@ Fixed
- Fixed crashes when closing tabs while hinting
- Fixed starting on newer PyQt/sip versions with LibreSSL
- When downloading files with QtWebKit, a User-Agent header is set when possible.
- Fixed showing of keybindings in the :help completion
v0.9.1
------

View File

@ -53,6 +53,8 @@ class HelpCompletionModel(base.BaseCompletionModel):
# https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
COLUMN_WIDTHS = (20, 60, 20)
def __init__(self, parent=None):
super().__init__(parent)
self._init_commands()