Merge lp:~3v1n0/unity/lim-optional into lp:unity

Proposed by Marco Trevisan (Treviño)
Status: Merged
Approved by: Stephen M. Webb
Approved revision: no longer in the source branch.
Merged at revision: 3953
Proposed branch: lp:~3v1n0/unity/lim-optional
Merge into: lp:unity
Diff against target: 25 lines (+2/-2)
2 files modified
com.canonical.Unity.gschema.xml (+1/-1)
unity-shared/MenuManager.cpp (+1/-1)
To merge this branch: bzr merge lp:~3v1n0/unity/lim-optional
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Needs Fixing
Stephen M. Webb (community) Approve
Review via email: mp+256826@code.launchpad.net

Commit message

MenuManager, settings: go back to Global Menus as default

As per design decision.

To post a comment you must log in.
Revision history for this message
Stephen M. Webb (bregma) :
review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'com.canonical.Unity.gschema.xml'
--- com.canonical.Unity.gschema.xml 2015-03-25 14:59:04 +0000
+++ com.canonical.Unity.gschema.xml 2015-04-20 15:01:28 +0000
@@ -47,7 +47,7 @@
47 <description>This is used to enable/disable double-click result activation in the dash. Double-click to activate, single click preview</description>47 <description>This is used to enable/disable double-click result activation in the dash. Double-click to activate, single click preview</description>
48 </key>48 </key>
49 <key type="b" name="integrated-menus">49 <key type="b" name="integrated-menus">
50 <default>true</default>50 <default>false</default>
51 <summary>Enable/Disable the integrated menus in Unity.</summary>51 <summary>Enable/Disable the integrated menus in Unity.</summary>
52 <description>When this is enabled, the application menus will be shown52 <description>When this is enabled, the application menus will be shown
53 on the window decoration, otherwise they will be always shown on the53 on the window decoration, otherwise they will be always shown on the
5454
=== modified file 'unity-shared/MenuManager.cpp'
--- unity-shared/MenuManager.cpp 2015-02-19 19:33:36 +0000
+++ unity-shared/MenuManager.cpp 2015-04-20 15:01:28 +0000
@@ -232,7 +232,7 @@
232};232};
233233
234Manager::Manager(Indicators::Ptr const& indicators, key::Grabber::Ptr const& grabber)234Manager::Manager(Indicators::Ptr const& indicators, key::Grabber::Ptr const& grabber)
235 : integrated_menus(true)235 : integrated_menus(false)
236 , show_menus_wait(180)236 , show_menus_wait(180)
237 , always_show_menus(false)237 , always_show_menus(false)
238 , fadein(100)238 , fadein(100)