From 07009b601f75e6166d75ae6dd292c9863356e99e Mon Sep 17 00:00:00 2001 From: uclaros Date: Wed, 9 Nov 2016 21:41:47 +0200 Subject: [PATCH] Set the tooltip timer to the max accepted value --- lib/Slic3r/GUI/MainFrame.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Slic3r/GUI/MainFrame.pm b/lib/Slic3r/GUI/MainFrame.pm index d97ad22ef..ad1c0fcb2 100644 --- a/lib/Slic3r/GUI/MainFrame.pm +++ b/lib/Slic3r/GUI/MainFrame.pm @@ -33,6 +33,10 @@ sub new { $self->_init_tabpanel; $self->_init_menubar; + # set default tooltip timer in msec + # SetAutoPop supposedly accepts long integers but some bug doesn't allow for larger values + Wx::ToolTip::SetAutoPop(32767); + # initialize status bar $self->{statusbar} = Slic3r::GUI::ProgressStatusBar->new($self, -1); $self->{statusbar}->SetStatusText("Version $Slic3r::VERSION - Remember to check for updates at http://slic3r.org/");