From a07b45ba854813a1b776bd5e66130093d605a82b Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Fri, 17 Jan 2025 12:12:57 +0800 Subject: [PATCH] FIX: enlarge the scroll rate jira: [STUDIO-9924] Change-Id: Ic6cabccf3febc484bdd05b10cb6dfa1b0b78d710 --- src/slic3r/GUI/StatusPanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/StatusPanel.cpp b/src/slic3r/GUI/StatusPanel.cpp index 0a3bbadd9..5a25c138e 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -1063,7 +1063,7 @@ void PrintingTaskPanel::set_star_count(int star_count) StatusBasePanel::StatusBasePanel(wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, long style, const wxString &name) : wxScrolledWindow(parent, id, pos, size, wxHSCROLL | wxVSCROLL) { - this->SetScrollRate(5, 5); + this->SetScrollRate(25, 25); Slic3r::DeviceManager* dev = Slic3r::GUI::wxGetApp().getDeviceManager(); if (!dev) return; obj = dev->get_selected_machine();