You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Issue migrated from SourceForge | ID: 1821651 | Submitted by 'redfrik']
[http://sourceforge.net/support/tracker.php?aid=1821651]
if i disable editable before setting the string, nothing gets show. if i disable after then it's ok.
swingosc works fine and there the order doesn't matter.
[Issue migrated from SourceForge | ID: 1821651 | Submitted by 'redfrik']
[http://sourceforge.net/support/tracker.php?aid=1821651]
if i disable editable before setting the string, nothing gets show. if i disable after then it's ok.
swingosc works fine and there the order doesn't matter.
GUI.cocoa
(
w= GUI.window.new;
GUI.textView.new(w, Rect(10, 10, 100, 20))
.editable_(false)
.string_("asdf");//not displayed
w.front;
)
(
w= GUI.window.new;
GUI.textView.new(w, Rect(10, 10, 100, 20))
.string_("asdf")
.editable_(false);
w.front;
)
_f
The text was updated successfully, but these errors were encountered: