From: Drew Fisher <drew.m.fisher@gmail.com>
Date: Fri, 8 Oct 2010 08:03:27 +0000 (-0700)
Subject: Increase minimum size to 1024x768 for the widget.
X-Git-Url: http://git.zarvox.org/static/%24c%5B2%5D?a=commitdiff_plain;h=3f5f36cc4e970af5af54a4c1d05533a39aea1c04;p=shareboard.git

Increase minimum size to 1024x768 for the widget.
---

diff --git a/shareboard.cpp b/shareboard.cpp
index 6701f07..62831b9 100644
--- a/shareboard.cpp
+++ b/shareboard.cpp
@@ -19,7 +19,7 @@ Shareboard::Shareboard(QWidget* parent) : QWidget(parent) {
 	layout->addWidget(prompt);
 	layout->addWidget(canvas);
 	setLayout(layout);
-	setMinimumSize(640,480);
+	setMinimumSize(1024,768);
 
 	// All real userIDs are positive, so we won't trigger the delete in postAction until setUserID is called
 	userID = -1;