change format help height when editing

This commit is contained in:
Blake DeMarcy 2017-04-26 20:22:05 -05:00 committed by GitHub
parent 8e2b2efdef
commit 5af39825d3
1 changed files with 2 additions and 2 deletions

View File

@ -961,13 +961,13 @@ class App(object):
**frame_theme()
)
v = 25 if self.window_split else 50
v = 5 if self.window_split else 50
app.loop.widget = urwid.Overlay(
widget, app.loop.widget,
align=("relative", 50),
valign=("relative", v),
width=app.prefs["max_text_width"],
height=("relative", v)
height=("relative", 45)
)