|
From: Tapio V. <aa...@us...> - 2011-01-19 16:42:49
|
Module: editor
Branch: master
Commit: 1cf0bf5cdf278ca03393d3b627e1bf3e0b0e014e
Author: Tapio Vierros <tap...@gm...>
Date: Wed Jan 19 18:01:27 2011 +0200
Minimum size for window - counter shrinking into uselessness when un-maximizing.
---
editor.ui | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/editor.ui b/editor.ui
index a9f09c1..1b76db0 100644
--- a/editor.ui
+++ b/editor.ui
@@ -10,6 +10,18 @@
<height>600</height>
</rect>
</property>
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="minimumSize">
+ <size>
+ <width>600</width>
+ <height>500</height>
+ </size>
+ </property>
<property name="windowTitle">
<string>Editor</string>
</property>
|