milkbone57 22 years ago
parent
commit
118753d39f
  1. 1
      docs/BUGS.txt
  2. 1
      docs/VERSION.txt
  3. 2
      plugins/Tk-BList/Milkbone/BList.pm
  4. 3
      plugins/Tk-GUI/Tk-GUI.pl

1
docs/BUGS.txt

@ -1,3 +1,4 @@ @@ -1,3 +1,4 @@
BROWSER DOESN'T FORK ON WIN32
double type
warnings emitted (eg the bug in Tk::Browser)
multiple styles in browseedit

1
docs/VERSION.txt

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
0.355
--
* Menus don't look cheesy on Win98
* Browser option in the conf
* Configuration dialog
* Customizable Monitor-ing

2
plugins/Tk-BList/Milkbone/BList.pm

@ -174,7 +174,7 @@ sub on_rclick @@ -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);
}

3
plugins/Tk-GUI/Tk-GUI.pl

@ -19,7 +19,8 @@ my $mw = MainWindow->new(); @@ -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);

Loading…
Cancel
Save