I'm using Ubuntu 24.04 with gtk2/3 installed. I'm trying to use a scrollgroup but when the window opens its just a few pixel square and when I enlarge it I get error"(Interpreter:1067412): Gtk-CRITICAL **: 09:21:50.204: gtk_box_gadget_distribute: assertion 'size >= 0' failed in GtkScrollbar". Here is the xml:
Code: Select all
<?xml version="1.0" encoding="ISO-8859-1"?>
<application id="app">
<window title="Test" id="wi_main" remember="0" open="1">
<vgroup>
<scrollgroup>
<button/>
</scrollgroup>
</vgroup>
</window>
</application>
Code: Select all
@REQUIRE "rapagui"
moai.CreateApp(FileToString("Test.xml"))
Repeat
WaitEvent
Forever
NathanH