mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-09-24 11:53:14 +08:00
Ignore failure to call SetAutoPop when not available. #3596
This commit is contained in:
parent
6cdff99df3
commit
2e82fb01a6
@ -41,7 +41,8 @@ sub new {
|
|||||||
|
|
||||||
# set default tooltip timer in msec
|
# set default tooltip timer in msec
|
||||||
# SetAutoPop supposedly accepts long integers but some bug doesn't allow for larger values
|
# SetAutoPop supposedly accepts long integers but some bug doesn't allow for larger values
|
||||||
Wx::ToolTip::SetAutoPop(32767);
|
# (SetAutoPop is not available on GTK.)
|
||||||
|
eval { Wx::ToolTip::SetAutoPop(32767) };
|
||||||
|
|
||||||
# initialize status bar
|
# initialize status bar
|
||||||
$self->{statusbar} = Slic3r::GUI::ProgressStatusBar->new($self, -1);
|
$self->{statusbar} = Slic3r::GUI::ProgressStatusBar->new($self, -1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user