Add Category Tabs Mode#231
Merged
Merged
Conversation
Implements a new tab-based interface option for managing Pandora categories as an alternative to the tree view. - New project setting to toggle between tree mode and tab mode - TabContainer displays each root category as a separate tab - '+' tab to create new root categories - Right-click context menu on tabs for rename/delete operations - Automatic mode switching when settings change - Tab mode hides "Create Category" button and enables "Create Entity" button by default - Entities and subcategories created within the context of the active tab
shomykohai
reviewed
Dec 12, 2025
| @onready var import_dialog = %ImportDialog | ||
| @onready var progress_bar = %ProgressBar | ||
| @onready var category_tab_container: TabContainer = %CategoryTabContainer | ||
| @onready var tree_scroll_container: ScrollContainer = $Contents/DataContent/HSplitContainer/EntitySelection/ScrollContainer |
Contributor
There was a problem hiding this comment.
Use the % notation here to avoid breaking it accidentally in the future.
Also, rename the node to make it more clear what it is, maybe giving it the same name as the variable.
shomykohai
suggested changes
Dec 12, 2025
shomykohai
left a comment
Contributor
There was a problem hiding this comment.
Nice PR!
This is, in my opinion, a greag QoL update :D!
Just a small change to do for consistency with the codebase
Owner
|
Very nice. Thank you for your contribution. |
bitbrain
approved these changes
Dec 18, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR implements a new tab-based interface option for managing Pandora categories as an alternative to the existing tree view. This provides a cleaner, more intuitive workflow for users working with many root categories.
Implements #146
Features
Screenshots
Let me know if there are any additional adjustments needed!