| Summary: | placement of window menu at top level | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Jon Smirl <jonsmirl> |
| Component: | UI: all modes | Assignee: | KDevelop Developers <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | git master | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Jon Smirl
2004-01-03 00:46:44 UTC
SVN commit 614205 by dymo:
Show "Window" menu after "Settings".
BUG: 71709
M +16 -16 kdevassistantui.rc
M +16 -16 kdevelopui.rc
--- branches/kdevelop/3.4/src/kdevassistantui.rc #614204:614205
@@ -1,5 +1,5 @@
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
-<kpartgui version="8" name="kdevassistant" >
+<kpartgui version="9" name="kdevassistant" >
<MenuBar>
<Menu name="file" noMerge="1"><text>&File</text>
<DefineGroup name="new_merge"/>
@@ -82,21 +82,6 @@
<Separator/>
<Merge/>
</Menu> -->
- <Menu name="window">
- <text>&Window</text>
- <Action name="view_next_window"/>
- <Action name="view_previous_window"/>
- <Separator/>
- <Action name="split_h"/>
- <Action name="split_v"/>
- <Separator/>
- <Action name="switch_left_dock"/>
- <Action name="switch_right_dock"/>
- <Action name="switch_bottom_dock"/>
- <Separator/>
- <DefineGroup name="window_operations"/>
- <Merge/>
- </Menu>
<Menu name="settings" noMerge="1">
<text>&Settings</text>
<Action name="settings_show_menubar" />
@@ -117,6 +102,21 @@
<Action name="settings_configure" />
<DefineGroup name="configure_merge" />
</Menu>
+ <Menu append="settings_merge" name="window">
+ <text>&Window</text>
+ <Action name="view_next_window"/>
+ <Action name="view_previous_window"/>
+ <Separator/>
+ <Action name="split_h"/>
+ <Action name="split_v"/>
+ <Separator/>
+ <Action name="switch_left_dock"/>
+ <Action name="switch_right_dock"/>
+ <Action name="switch_bottom_dock"/>
+ <Separator/>
+ <DefineGroup name="window_operations"/>
+ <Merge/>
+ </Menu>
<Menu name="help" append="about_merge">
<text>&Help</text>
<Merge/>
--- branches/kdevelop/3.4/src/kdevelopui.rc #614204:614205
@@ -1,5 +1,5 @@
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
-<kpartgui version="30" name="kdevelop" >
+<kpartgui version="31" name="kdevelop" >
<MenuBar>
<Menu name="file" noMerge="1"><text>&File</text>
<DefineGroup name="new_merge"/>
@@ -93,21 +93,6 @@
<Separator/>
<Merge/>
</Menu>
- <Menu name="window">
- <text>&Window</text>
- <Action name="view_next_window"/>
- <Action name="view_previous_window"/>
- <Separator/>
- <Action name="split_h"/>
- <Action name="split_v"/>
- <Separator/>
- <Action name="switch_left_dock"/>
- <Action name="switch_right_dock"/>
- <Action name="switch_bottom_dock"/>
- <Separator/>
- <DefineGroup name="window_operations"/>
- <Merge/>
- </Menu>
<Menu name="settings" noMerge="1">
<text>&Settings</text>
<Action name="settings_show_menubar" />
@@ -129,6 +114,21 @@
<Action name="settings_configure" />
<DefineGroup name="configure_merge" />
</Menu>
+ <Menu append="settings_merge" name="window">
+ <text>&Window</text>
+ <Action name="view_next_window"/>
+ <Action name="view_previous_window"/>
+ <Separator/>
+ <Action name="split_h"/>
+ <Action name="split_v"/>
+ <Separator/>
+ <Action name="switch_left_dock"/>
+ <Action name="switch_right_dock"/>
+ <Action name="switch_bottom_dock"/>
+ <Separator/>
+ <DefineGroup name="window_operations"/>
+ <Merge/>
+ </Menu>
<Menu name="help" append="about_merge">
<text>&Help</text>
<Merge/>
|