This commit is contained in:
Tanasart 2023-03-21 19:16:57 +07:00
parent a7ab246d34
commit 7f324941df
2 changed files with 8 additions and 3 deletions

View file

@ -90,7 +90,11 @@
TESTING = CONF_TESTING;
#macro DEMO false
#macro Demo:DEMO true
#macro Demo:DEMO true
#macro Alpha:DEMO true
#macro ALPHA false
#macro Alpha:ALPHA true
#region color
#macro c_ui_blue_dkblack $251919

View file

@ -53,7 +53,7 @@ function Panel_Menu() : PanelContent() constructor {
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 = [
menuItem(get_text("panel_menu_help_video", "Tutorial videos"), function() {
@ -583,7 +583,8 @@ function Panel_Menu() : PanelContent() constructor {
if(MODIFIED)
txt += "*";
txt += " - Pixel Composer";
if(DEMO) txt += " DEMO";
if(ALPHA) txt += " ALPHA";
else if(DEMO) txt += " DEMO";
var tx0, tx1, maxW, tcx;
var ty0, ty1;