Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guiconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ def _create_kconfig_tree_and_desc(parent):
# Panedwindow and the Treeview. This code is shared between the main window
# and the jump-to dialog.

panedwindow = ttk.Panedwindow(parent, orient=VERTICAL)
panedwindow = ttk.Panedwindow(parent, orient="vertical")
Copy link
Collaborator

@tejlmand tejlmand Oct 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

VERTICAL is imported here:

from tkinter import *

that import provides VERTICAL.

Are you seeing any errors ?


tree_frame, tree = _create_kconfig_tree(panedwindow)
desc_frame, desc = _create_kconfig_desc(panedwindow)
Expand Down