Skip to content

Commit 83a4bf5

Browse files
committed
guiconfig: fix ttk.PanedWindow orient
Changed orient=VERTICAL to orient="vertical". VERTICAL wasn't imported; ttk.Panedwindow expects a string. Signed-off-by: Benjamin Cabé <[email protected]>
1 parent e012d82 commit 83a4bf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guiconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ def _create_kconfig_tree_and_desc(parent):
495495
# Panedwindow and the Treeview. This code is shared between the main window
496496
# and the jump-to dialog.
497497

498-
panedwindow = ttk.Panedwindow(parent, orient=VERTICAL)
498+
panedwindow = ttk.Panedwindow(parent, orient="vertical")
499499

500500
tree_frame, tree = _create_kconfig_tree(panedwindow)
501501
desc_frame, desc = _create_kconfig_desc(panedwindow)

0 commit comments

Comments
 (0)