Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion menuconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,6 @@ def _jump_to(node):
global _cur_menu
global _shown
global _sel_node_i
global _menu_scroll
global _show_all
global _parent_screen_rows

Expand Down