From d43eac1e38ca61510a6c2e125a5ff942de11e141 Mon Sep 17 00:00:00 2001 From: Bill Spitzak Date: Tue, 11 Jan 2000 08:20:02 +0000 Subject: Programs can now resize() their windows even if they are not resizable() on X (this already worked on Win32). Changed the resize demo program to test this. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@981 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_x.cxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx index 413a3723a..44909be2e 100644 --- a/src/Fl_x.cxx +++ b/src/Fl_x.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_x.cxx,v 1.24.2.8 1999/11/10 09:18:31 bill Exp $" +// "$Id: Fl_x.cxx,v 1.24.2.9 2000/01/11 08:19:59 bill Exp $" // // X specific code for the Fast Light Tool Kit (FLTK). // @@ -562,9 +562,10 @@ void Fl_Window::resize(int X,int Y,int W,int H) { x(X); y(Y); } if (resize_from_program && shown()) { - if (is_a_resize) + if (is_a_resize) { + if (!resizable()) size_range(w(),h(),w(),h()); XMoveResizeWindow(fl_display, i->xid, X, Y, W>0 ? W : 1, H>0 ? H : 1); - else + } else XMoveWindow(fl_display, i->xid, X, Y); } } @@ -872,5 +873,5 @@ void Fl_Window::make_current() { #endif // -// End of "$Id: Fl_x.cxx,v 1.24.2.8 1999/11/10 09:18:31 bill Exp $". +// End of "$Id: Fl_x.cxx,v 1.24.2.9 2000/01/11 08:19:59 bill Exp $". // -- cgit v1.2.3