Skip to content
Snippets Groups Projects
Verified Commit 78203034 authored by Tobias Triffterer's avatar Tobias Triffterer :house_with_garden:
Browse files

Redraw RootCanvasWidget on Resize

React properly when the widget is resized...
parent a0a85565
No related branches found
No related tags found
No related merge requests found
Pipeline #3095 passed with stage
in 48 seconds
......@@ -78,6 +78,8 @@ void RootCanvasWidget::resizeEvent(QResizeEvent* const event)
static_cast<UInt_t>(event->size().width()),
static_cast<UInt_t>(event->size().height())
);
_canvas->Draw();
_canvas->Modified();
_canvas->Resize();
_canvas->Update();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment