Hi, I don't notice the problem on linux, but a better hack than a 1 second delay timer, maybe be to recursively busy the mainwindow underneath, until the file is returned.
It works well here. Ooops, update, I just noticed it only works the first time getOpenFile is called, after that the file dialog is busied too. There probably is a trick to fix that glitch, but it eludes as of yet. I still think
busy unbusy is the way to go.
Update 2 Yeah , removing the recurse=>1 from the busy seems to do it.
sub select_file {
#...;
#$mw->Busy(-recurse => 1); #don't recurse here
$mw->Busy();
my $file = $mw->getOpenFile(
-title => 'select file',
);
$file = File::Spec->canonpath( $file );
$mw->Unbusy(-recurse => 1);
return $file;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.