From 7f7e0e4ea1cdf52e0d5f2858baa976bd391e973a Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Fri, 8 May 2020 17:08:20 +0200 Subject: Replace Fl_Window_Driver::is_a_rescale() by Fl_Window::is_a_rescale() so it can be called by any user code. --- src/Fl_Group.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Fl_Group.cxx') diff --git a/src/Fl_Group.cxx b/src/Fl_Group.cxx index 229d33fbe..aefead997 100644 --- a/src/Fl_Group.cxx +++ b/src/Fl_Group.cxx @@ -708,7 +708,7 @@ void Fl_Group::resize(int X, int Y, int W, int H) { Fl_Widget::resize(X, Y, W, H); // make new xywh values visible for children - if ((!resizable() || (dw==0 && dh==0 )) && !Fl_Window_Driver::is_a_rescale()) { + if ((!resizable() || (dw==0 && dh==0 )) && !Fl_Window::is_a_rescale()) { if (!as_window()) { Fl_Widget*const* a = array(); -- cgit v1.2.3