diff --git a/docs/BUGS.txt b/docs/BUGS.txt index 0c1c4d6..b8355b8 100644 --- a/docs/BUGS.txt +++ b/docs/BUGS.txt @@ -1,3 +1,4 @@ +BROWSER DOESN'T FORK ON WIN32 double type warnings emitted (eg the bug in Tk::Browser) multiple styles in browseedit diff --git a/docs/VERSION.txt b/docs/VERSION.txt index a36c4af..35929a3 100644 --- a/docs/VERSION.txt +++ b/docs/VERSION.txt @@ -1,6 +1,7 @@ 0.355 -- +* Menus don't look cheesy on Win98 * Browser option in the conf * Configuration dialog * Customizable Monitor-ing diff --git a/plugins/Tk-BList/Milkbone/BList.pm b/plugins/Tk-BList/Milkbone/BList.pm index c0fce16..1435f82 100644 --- a/plugins/Tk-BList/Milkbone/BList.pm +++ b/plugins/Tk-BList/Milkbone/BList.pm @@ -174,7 +174,7 @@ sub on_rclick return if @temp == 1; $self->select_buddy($self->{tree}->nearest($y)); - my $offset = ($^O =~ /Win32/) ? 20 : -30; + my $offset = ($^O =~ /Win32/) ? 10 : -30; $self->{buddy_menu}->Post($self->x + $x, $self->y + $self->height - $self->{tree}->height + $y + $offset); } diff --git a/plugins/Tk-GUI/Tk-GUI.pl b/plugins/Tk-GUI/Tk-GUI.pl index c26d3c1..a03a645 100644 --- a/plugins/Tk-GUI/Tk-GUI.pl +++ b/plugins/Tk-GUI/Tk-GUI.pl @@ -19,7 +19,8 @@ my $mw = MainWindow->new(); $mw->withdraw(); $mw->OnDestroy(\&on_destroy); -$mw->optionAdd("*font", "-*-arial-norma-r-*-*-*-120-*-*-*-*-*-*"); +$mw->optionAdd("*font", "-*-arial-norma-r-*-*-*-120-*-*-*-*-*-*") if nix(); +$mw->optionAdd("*font", "-*-tahoma-norma-r-*-*-*-120-*-*-*-*-*-*") if win32(); $mw->optionAdd("*borderWidth", 1); $mw->optionAdd("*highlightThickness", 0);