* Bug #11343 fixed - The "isoview" figure property did not work when the axes
margins had been modified.
+* Bug #11479 fixed - Under Ubuntu Unity, the color of the text menu was wrong.
+
* Bug #12163 fixed - unzoom did not work with a single input argument.
* Bug #12463 fixed - Bad specification for rect=[x,y,w,h] argument in french help
import java.awt.Color;
import javax.swing.ImageIcon;
+import javax.swing.UIManager;
import org.scilab.modules.commons.gui.ScilabKeyStroke;
import org.scilab.modules.graphic_objects.graphicController.GraphicController;
uimenu.setVisible((Boolean) value);
break;
case __GO_UI_FOREGROUNDCOLOR__ :
- Double[] allColors = ((Double[]) value);
- uimenu.setForeground(new Color((int) (allColors[0] * COLORS_COEFF),
- (int) (allColors[1] * COLORS_COEFF),
- (int) (allColors[2] * COLORS_COEFF)));
+ uimenu.setForeground(UIManager.getColor("MenuBar.foreground"));
break;
case __GO_UI_ICON__ :
if (!((String) value).equals("")) {