mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-04 01:05:16 +01:00
Alpha
This commit is contained in:
parent
a7ab246d34
commit
7f324941df
2 changed files with 8 additions and 3 deletions
|
@ -91,6 +91,10 @@
|
||||||
|
|
||||||
#macro DEMO false
|
#macro DEMO false
|
||||||
#macro Demo:DEMO true
|
#macro Demo:DEMO true
|
||||||
|
#macro Alpha:DEMO true
|
||||||
|
|
||||||
|
#macro ALPHA false
|
||||||
|
#macro Alpha:ALPHA true
|
||||||
|
|
||||||
#region color
|
#region color
|
||||||
#macro c_ui_blue_dkblack $251919
|
#macro c_ui_blue_dkblack $251919
|
||||||
|
|
|
@ -53,7 +53,7 @@ function Panel_Menu() : PanelContent() constructor {
|
||||||
menuItem(get_text("exit", "Close program"), function() { window_close(); }),
|
menuItem(get_text("exit", "Close program"), function() { window_close(); }),
|
||||||
];
|
];
|
||||||
|
|
||||||
if(DEMO) array_delete(menu_file, 1, 4);
|
if(DEMO) array_delete(menu_file, 1, 5);
|
||||||
|
|
||||||
menu_help = [
|
menu_help = [
|
||||||
menuItem(get_text("panel_menu_help_video", "Tutorial videos"), function() {
|
menuItem(get_text("panel_menu_help_video", "Tutorial videos"), function() {
|
||||||
|
@ -583,7 +583,8 @@ function Panel_Menu() : PanelContent() constructor {
|
||||||
if(MODIFIED)
|
if(MODIFIED)
|
||||||
txt += "*";
|
txt += "*";
|
||||||
txt += " - Pixel Composer";
|
txt += " - Pixel Composer";
|
||||||
if(DEMO) txt += " DEMO";
|
if(ALPHA) txt += " ALPHA";
|
||||||
|
else if(DEMO) txt += " DEMO";
|
||||||
|
|
||||||
var tx0, tx1, maxW, tcx;
|
var tx0, tx1, maxW, tcx;
|
||||||
var ty0, ty1;
|
var ty0, ty1;
|
||||||
|
|
Loading…
Reference in a new issue