From 1d026c1b4ac5f46c8c94de84bdaa16fb6669cc8a Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Mon, 16 Mar 2015 23:27:38 +0900 Subject: [PATCH] syntax_template: Fix that font color popup not appear when font is small. Fix that font color popup does not appear on font setting when font is small by setting font_size 3 digits. --- data/color/syntax_template.dat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/color/syntax_template.dat b/data/color/syntax_template.dat index d5ec66a..a7d22b3 100644 --- a/data/color/syntax_template.dat +++ b/data/color/syntax_template.dat @@ -1 +1 @@ - //comment
#define RECT_COLOR 0 136 170 255
part { name: "rect";
type: RECT;
description { state: "default" 0.0;
rel1.relative: 0.0 0.0;
rel2.relative: 1.0 1.0;
color: RECT_COLOR;
}
}
program { name: "mouse_down";
signal: "mouse,down,1";
source: "rect";
action: STATE_SET "default" 0.0;
target: "rect";
}
script {
public flag = 0;
public func() {
if (!get_int(flag)) set_int(flag, 1);
}
} + //comment
#define RECT_COLOR 0 136 170 255
part { name: "rect";
type: RECT;
description { state: "default" 0.0;
rel1.relative: 0.0 0.0;
rel2.relative: 1.0 1.0;
color: RECT_COLOR;
}
}
program { name: "mouse_down";
signal: "mouse,down,1";
source: "rect";
action: STATE_SET "default" 0.0;
target: "rect";
}
script {
public flag = 0;
public func() {
if (!get_int(flag)) set_int(flag, 1);
}
}