mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-05 21:57:20 +00:00
62db0c73a3
The textbox used in the tooltip was getting all clicks from the user. So on the user data popup we have to 1) don't set the title bar text, 2) if the title bar is not set the text box is hidden so will not eat all click messages.
15 lines
446 B
XML
15 lines
446 B
XML
<!-- Aseprite -->
|
|
<!-- Copyright (C) 2001-2017 by David Capello -->
|
|
<gui>
|
|
<tipwindow id="user_data">
|
|
<vbox style="tooltip_face">
|
|
<label text="@.user_data" style="tooltip_text" />
|
|
<entry id="text" magnet="true" maxsize="65535" minwidth="128" expansive="true" />
|
|
<hbox>
|
|
<label text="@.color" style="tooltip_text" />
|
|
<colorpicker id="color" expansive="true" />
|
|
</hbox>
|
|
</vbox>
|
|
</tipwindow>
|
|
</gui>
|