ashbb
ashbb
(Red) Shoes is using Gtk::Fixed widget. Look at _why's comment: https://github.com/shoes/shoes/blob/master/shoes/native/gtk.c#L377
@AllegroGavin Thanks for the post. But, umm... [It works for me](http://www.rin-shun.com/shoes/green_shoes_issue70.swf.html). I can't get the error on my Windows 7 32-bit. Sorry, I'm not sure this issue is dependent on...
Hi all, The reason that I include Hpricot binary library files is because `gem install hpricot` doesn't work on Windows (can't make .so files without C compiler). But think over...
Hi njwhite, Thank you for the good comment. :) I think there are two things we need to consider. The 1st is UI. As same as other Shoes methods, I'd...
Hi knoopx, Thank you for your interest in TreeView. We are discussing [about that in Shoes ML](http://librelist.com/browser//shoes/2011/7/17/treeview-component/). If you have an idea or something, feel free to join a discussion....
@nanenj Thanks for the post. Yes, this is a problem. But sorry, I have no solution for now. A workaround is to slow the rate of animate, e.g. `animate(1)`. Not...
Hi John, Thank you for the information. Yeah, remove method is not so good. I need to study GTK more. Try out to use `img.clear` instead of `img.remove` for now....
@meruby If you overwrite Shoes::ListBox#text method like this, you can get `nil` when you don't select anything. ``` ruby class Shoes::ListBox alias :_text :text def text return unless @real.active_text _text...
You mean the following snippet should work well. Right? ``` ruby Shoes.app do lb = list_box items: [1, 2, 3, 4], entry: true, choose: 9 button 'print' do p lb.text...
Hi John, Thank you for the very helpful information! I should have had more consideration for overwriting Array#clear method. xx-P This is a patch. Try it out. class Array alias...