Revision: 4375
          http://tigervnc.svn.sourceforge.net/tigervnc/?rev=4375&view=rev
Author:   ossman_
Date:     2011-04-15 13:00:12 +0000 (Fri, 15 Apr 2011)

Log Message:
-----------
Limit window size to framebuffer size, which is the behaviour we have in the
old viewer.

Modified Paths:
--------------
    trunk/vncviewer/DesktopWindow.cxx

Modified: trunk/vncviewer/DesktopWindow.cxx
===================================================================
--- trunk/vncviewer/DesktopWindow.cxx   2011-04-15 12:58:31 UTC (rev 4374)
+++ trunk/vncviewer/DesktopWindow.cxx   2011-04-15 13:00:12 UTC (rev 4375)
@@ -40,7 +40,7 @@
   : Fl_Window(w, h)
 {
   // Allow resize
-  size_range(100, 100);
+  size_range(100, 100, w, h);
 
   Fl_Scroll *scroll = new Fl_Scroll(0, 0, w, h);
   scroll->color(FL_BLACK);


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev
_______________________________________________
Tigervnc-commits mailing list
Tigervnc-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tigervnc-commits

Reply via email to