← Back to team overview

myunity team mailing list archive

[Merge] lp:~nobuto/myunity/lp-908656 into lp:myunity

 

Nobuto MURATA has proposed merging lp:~nobuto/myunity/lp-908656 into lp:myunity.

Requested reviews:
  MyUnity team (myunity)
Related bugs:
  Bug #908656 in MyUnity: "each time stating myunity, launcher_hide_mode toggles unexpectedly"
  https://bugs.launchpad.net/myunity/+bug/908656

For more details, see:
https://code.launchpad.net/~nobuto/myunity/lp-908656/+merge/86876

This merge proposal fixes toggling unexpectedly launcher_hide_mode issue(Bug: #908656).

Just fixes incorrect correspondence between radio button id and launcher_hide_mode.
-- 
https://code.launchpad.net/~nobuto/myunity/lp-908656/+merge/86876
Your team MyUnity team is requested to review the proposed merge of lp:~nobuto/myunity/lp-908656 into lp:myunity.
=== modified file 'FMain.class'
--- FMain.class	2011-12-10 22:05:14 +0000
+++ FMain.class	2011-12-26 02:26:23 +0000
@@ -153,9 +153,9 @@
 
 CASE "Ubuntu 11.10", "Ubuntu 12.04"
 IF Main.launcher_hide_mode = 0 THEN RadioButton4.value = TRUE
-IF Main.launcher_hide_mode = 1 THEN RadioButton5.value = TRUE
-IF Main.launcher_hide_mode = 2 THEN RadioButton6.value = TRUE
-IF Main.launcher_hide_mode = 3 THEN RadioButton7.value = TRUE
+IF Main.launcher_hide_mode = 1 THEN RadioButton6.value = TRUE
+IF Main.launcher_hide_mode = 2 THEN RadioButton7.value = TRUE
+IF Main.launcher_hide_mode = 3 THEN RadioButton5.value = TRUE
 
 IF Main.devices_option = 2 THEN RadioButton1.value = TRUE
 IF Main.devices_option = 1 THEN RadioButton2.value = TRUE