-
Notifications
You must be signed in to change notification settings - Fork 2.5k
feat: Reposition History button from overflow to main toolbar #7888
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -224,23 +224,23 @@ | |
| "when": "view == roo-cline.SidebarProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.marketplaceButtonClicked", | ||
| "command": "roo-cline.historyButtonClicked", | ||
| "group": "navigation@2", | ||
| "when": "view == roo-cline.SidebarProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.settingsButtonClicked", | ||
| "command": "roo-cline.marketplaceButtonClicked", | ||
| "group": "navigation@3", | ||
| "when": "view == roo-cline.SidebarProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.cloudButtonClicked", | ||
| "command": "roo-cline.settingsButtonClicked", | ||
| "group": "navigation@4", | ||
| "when": "view == roo-cline.SidebarProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.historyButtonClicked", | ||
| "group": "overflow@1", | ||
| "command": "roo-cline.cloudButtonClicked", | ||
| "group": "navigation@5", | ||
| "when": "view == roo-cline.SidebarProvider" | ||
| }, | ||
| { | ||
|
|
@@ -266,23 +266,23 @@ | |
| "when": "activeWebviewPanelId == roo-cline.TabPanelProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.marketplaceButtonClicked", | ||
| "command": "roo-cline.historyButtonClicked", | ||
| "group": "navigation@2", | ||
| "when": "activeWebviewPanelId == roo-cline.TabPanelProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.settingsButtonClicked", | ||
| "command": "roo-cline.marketplaceButtonClicked", | ||
| "group": "navigation@3", | ||
| "when": "activeWebviewPanelId == roo-cline.TabPanelProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.cloudButtonClicked", | ||
| "command": "roo-cline.settingsButtonClicked", | ||
| "group": "navigation@4", | ||
| "when": "activeWebviewPanelId == roo-cline.TabPanelProvider" | ||
| }, | ||
| { | ||
| "command": "roo-cline.historyButtonClicked", | ||
| "group": "overflow@1", | ||
| "command": "roo-cline.cloudButtonClicked", | ||
| "group": "navigation@5", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I notice the cloud button is now at position 5. Given that History might be used more frequently than Cloud features, would it make sense to consider the usage frequency when ordering these buttons? Perhaps Cloud could remain in the overflow menu if it's less commonly used? Just a thought for optimizing the toolbar real estate. |
||
| "when": "activeWebviewPanelId == roo-cline.TabPanelProvider" | ||
| }, | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The repositioning looks good and maintains proper sequential ordering. However, I'm curious - is having 5 navigation items within VSCode's recommended limits for toolbar items? Some users with smaller screens might find the toolbar a bit crowded. Have you tested this on different screen sizes?