Subject: | tk::browseentry using multiple monitors with dropdownmenus |
are there known issues with perl tk using multiple monitors like using
software (GUI) that got moved to monitor 2 or 3 causes dropdownmenus
(example Modul Tk-BrowseEntry, see picture, move the window to screen 2
and click on dropdown, the list is on screen1 not screen2) to open on
monitor1 or similiar behavior?
see https://rt.cpan.org/Ticket/Display.html?id=60968 too for screenshot
example code:
#!perl
use Tk;
use Tk::BrowseEntry;
my $mw = MainWindow->new;
$mw->title("Dropdowntest");
my $var;
use Tk::BrowseEntry;
$b = $mw->BrowseEntry(-label => "Label", -variable => \$var);
$b->insert("end", "opt1");
$b->insert("end", "opt2");
$b->insert("end", "opt3");
$b->pack;
MainLoop;