Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-swt-dev] Gtk - Checkbox/Radiobox setLocation Bug

Hi,

When calling setSize in front of setLocation the text in the
checkbox is not displayed.

This works:
----------------------8<----------------------
Button check = new Button( this, SWT.NONE | SWT.CHECK );
check.setLocation( 10, 200 );
check.setSize( 200, 300 );
check.setText( "TEST" );
----------------------8<----------------------

This don't (text is not diplayed):
----------------------8<----------------------
Button check = new Button( this, SWT.NONE | SWT.CHECK );
check.setSize( 200, 300 );
check.setLocation( 10, 200 );
check.setText( "TEST" );
----------------------8<----------------------

Is this a Gtk-Bug or SWT-Gtk bug? What informations do you need from me?

Tom

Reclaim Your Inbox!
http://www.mozilla.org/products/thunderbird

--
b e s t s o l u t i o n . a t                        EDV Systemhaus GmbH
------------------------------------------------------------------------
tom schindl        leiter softwareentwicklung   mobile  ++43 664 3145958
------------------------------------------------------------------------
eduard-bodem-gasse 8/3    A-6020 innsbruck      fax      ++43 512 935833
http://www.bestsolution.at                      phone    ++43 512 935834


Back to the top