diff -Nru unity-tweak-tool-0.0.6ubuntu1/data/unity.ui unity-tweak-tool-0.0.6ubuntu2/data/unity.ui --- unity-tweak-tool-0.0.6ubuntu1/data/unity.ui 2014-02-20 22:35:35.000000000 -0500 +++ unity-tweak-tool-0.0.6ubuntu2/data/unity.ui 2014-03-27 12:35:56.000000000 -0400 @@ -1,6 +1,7 @@ + - + 32 64 @@ -189,8 +190,6 @@ False Select the auto-hide animation of the launcher. Select the auto-hide animation of the launcher. - 0 - 1 Fade Dash and slide Slide only @@ -358,6 +357,25 @@ + + Minimize single window applications on click + True + True + False + 16 + 0 + 0.47999998927116394 + True + + + + False + True + 6 + 3 + + + True False @@ -371,7 +389,7 @@ False True - 3 + 5 @@ -423,7 +441,7 @@ False True - 4 + 6 @@ -580,7 +598,7 @@ False True - 5 + 7 @@ -597,7 +615,7 @@ False True - 6 + 8 @@ -605,7 +623,7 @@ True False start - 6 + 3 6 @@ -631,8 +649,6 @@ True Select the animation used for launching an application. Select the animation used for launching an application. - 0 - 1 No animation Pulse @@ -655,8 +671,6 @@ True Select the animation used for an urgent notification on the launcher Select the animation used for an urgent notification on the launcher - 0 - 1 No animation Pulse @@ -709,8 +723,6 @@ Select how the icons are coloured on the launcher Select how the icons are coloured on the launcher 1 - 0 - 1 All applications Open applications only @@ -783,7 +795,6 @@ Select the size of the icons on the launcher start - True adj_launcher_icon_size @@ -804,7 +815,7 @@ False True - 7 + 9 @@ -824,7 +835,7 @@ False True - 16 + 17 @@ -1270,7 +1281,6 @@ 2 8 - True adj_menu_visible @@ -1781,8 +1791,6 @@ False Select which of the installed audio players is default in the sound menu. Select which of the installed audio players is default in the sound menu. - 0 - 1 diff -Nru unity-tweak-tool-0.0.6ubuntu1/debian/changelog unity-tweak-tool-0.0.6ubuntu2/debian/changelog --- unity-tweak-tool-0.0.6ubuntu1/debian/changelog 2014-02-20 23:41:26.000000000 -0500 +++ unity-tweak-tool-0.0.6ubuntu2/debian/changelog 2014-03-27 12:39:25.000000000 -0400 @@ -1,3 +1,11 @@ +unity-tweak-tool (0.0.6ubuntu2) trusty; urgency=medium + + * Backport upstream commit adding support for minimizing + single window applications when clicking their icon on + the launcher (LP: #1298487). + + -- Andrew Starr-Bochicchio Thu, 27 Mar 2014 12:39:22 -0400 + unity-tweak-tool (0.0.6ubuntu1) trusty; urgency=medium * debian/patches/lp1281132.patch: Backport upstream commit diff -Nru unity-tweak-tool-0.0.6ubuntu1/UnityTweakTool/section/unity.py unity-tweak-tool-0.0.6ubuntu2/UnityTweakTool/section/unity.py --- unity-tweak-tool-0.0.6ubuntu1/UnityTweakTool/section/unity.py 2014-02-20 22:35:35.000000000 -0500 +++ unity-tweak-tool-0.0.6ubuntu2/UnityTweakTool/section/unity.py 2014-03-27 12:35:56.000000000 -0400 @@ -211,6 +211,16 @@ }) +check_minimize_window= CheckBox({ + 'id' : 'check_minimize_window', + 'builder' : Unity.builder, + 'schema' : 'org.compiz.unityshell', + 'path' : '/org/compiz/profiles/unity/plugins/unityshell/', + 'key' : 'launcher-minimize-window', + 'type' : 'boolean', + 'map' : {True:True,False:False}, + 'dependants': [] +}) LauncherIcons=Tab([sw_launcher_hidemode, @@ -225,7 +235,8 @@ spin_launcher_icon_size, sc_reveal_sensitivity, sc_launcher_transparency, - color_launcher_color_cus]) + color_launcher_color_cus, + check_minimize_window]) #=============== DASH ==========================