in reply to First column acting wierd! (MatchEntryMListbox) (Tk)
In MatchEntryMListbox.pm, you have:
my $scrolled_mlistbox = $popup_frame->Scrolled( qw/MListbox -selectmode browse -scrollbars oe/ );
Change scrollbars setting from oe to e, your GUI looked fine. I understand that oe is a valid setting, but...
my $scrolled_mlistbox = $popup_frame->Scrolled( qw/MListbox -selectmode browse -scrollbars e/ );
But this is not a bug with Tk::MListbox, as this works:
use Tk; use Tk::MListbox; my $mw = MainWindow->new(); $ml=$mw->Scrolled("MListbox", -scrollbars=>"oe", -columns=>[[-text=>'H +eading1', -sortable=>0], [-text=>'Heading2']])->pack(); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: First column acting wierd! (MatchEntryMListbox) (Tk)
by Ace128 (Hermit) on Sep 18, 2005 at 14:18 UTC |