Skip to content

Commit 1091bfb

Browse files
takaokoujiclaude
andcommitted
refactor: reposition Load from URL menu item
Moved the "Load from URL" menu item to appear after the download section in the File menu for better logical grouping of load/save operations. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 29e7bb4 commit 1091bfb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/components/menu-bar/menu-bar.jsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -498,15 +498,6 @@ class MenuBar extends React.Component {
498498
>
499499
{this.props.intl.formatMessage(sharedMessages.loadFromComputerTitle)}
500500
</MenuItem>
501-
<MenuItem
502-
onClick={this.handleClickLoadFromUrl}
503-
>
504-
<FormattedMessage
505-
defaultMessage="Load from URL"
506-
description="Menu bar item for loading from URL"
507-
id="gui.menuBar.loadFromUrl"
508-
/>
509-
</MenuItem>
510501
<SB3Downloader>{(className, downloadProjectCallback) => (
511502
<MenuItem
512503
className={className}
@@ -519,6 +510,15 @@ class MenuBar extends React.Component {
519510
/>
520511
</MenuItem>
521512
)}</SB3Downloader>
513+
<MenuItem
514+
onClick={this.handleClickLoadFromUrl}
515+
>
516+
<FormattedMessage
517+
defaultMessage="Load from URL"
518+
description="Menu bar item for loading from URL"
519+
id="gui.menuBar.loadFromUrl"
520+
/>
521+
</MenuItem>
522522
</MenuSection>
523523
</MenuBarMenu>
524524
</div>

0 commit comments

Comments
 (0)