mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-24 20:08:04 +01:00
Alpha
This commit is contained in:
parent
a7ab246d34
commit
7f324941df
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue