menubutton.m 383 B

123456789101112131415161718192021
  1. #include <lib/std.mi>
  2. Global Group pg;
  3. System.onScriptLoaded() {
  4. pg = getScriptGroup();
  5. }
  6. pg.onSetVisible(int v) {
  7. GuiObject t = pg.findObject("wasabi.menubutton.text");
  8. if (t != NULL) {
  9. if (v) {
  10. t.setXmlParam("offsetx", "1");
  11. t.setXmlParam("offsety", "1");
  12. } else {
  13. t.setXmlParam("offsetx", "0");
  14. t.setXmlParam("offsety", "0");
  15. }
  16. }
  17. }