[vlc-devel] commit: Qt4: Video Effects: Force puzzle to be in [2:16]x[2:16] range ( Jean-Baptiste Kempf )
git version control
git at videolan.org
Sun Sep 21 10:08:38 CEST 2008
vlc | branch: 0.9-bugfix | Jean-Baptiste Kempf <jb at videolan.org> | Sat Sep 20 19:19:12 2008 -0700| [998306c24fd42a5b43080f197dbb1b716902bc05] | committer: Jean-Baptiste Kempf
Qt4: Video Effects: Force puzzle to be in [2:16]x[2:16] range
If you go under 2x2, it can go seriously bersek.
(cherry picked from commit cdfe9a8985cf4d8fe8ce4578761a245e601ab5b1)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=998306c24fd42a5b43080f197dbb1b716902bc05
---
modules/gui/qt4/ui/video_effects.ui | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/ui/video_effects.ui b/modules/gui/qt4/ui/video_effects.ui
index bcd7039..fcaa1e5 100644
--- a/modules/gui/qt4/ui/video_effects.ui
+++ b/modules/gui/qt4/ui/video_effects.ui
@@ -488,7 +488,10 @@
<item row="0" column="1" >
<widget class="QSpinBox" name="puzzleRowsSpin" >
<property name="minimum" >
- <number>1</number>
+ <number>2</number>
+ </property>
+ <property name="maximum" >
+ <number>16</number>
</property>
<property name="value" >
<number>3</number>
@@ -498,7 +501,10 @@
<item row="1" column="1" >
<widget class="QSpinBox" name="puzzleColsSpin" >
<property name="minimum" >
- <number>1</number>
+ <number>2</number>
+ </property>
+ <property name="maximum" >
+ <number>16</number>
</property>
<property name="value" >
<number>3</number>
More information about the vlc-devel
mailing list