mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 12:34:06 +01:00
9 lines
302 B
Plaintext
9 lines
302 B
Plaintext
/// @description Insert description here
|
|
if(textbox == noone) exit;
|
|
if(textbox != WIDGET_CURRENT) exit;
|
|
if(array_empty(data)) exit;
|
|
|
|
if(point_in_rectangle(mouse_mx, mouse_my, dialog_x, dialog_y, dialog_x + dialog_w, dialog_y + dialog_h)) {
|
|
HOVER = self.id;
|
|
if(mouse_press(mb_left)) FOCUS = self.id;
|
|
} |