From d16640f186f0588935ce99a14927cdf6f2a2fa98 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 7 Oct 2009 16:38:31 +1000 Subject: Smaller gif file for the advanced tutorial --- .../declarative/pics/declarative-adv-tutorial4.gif | Bin 58337629 -> 1687445 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/doc/src/declarative/pics/declarative-adv-tutorial4.gif b/doc/src/declarative/pics/declarative-adv-tutorial4.gif index a67666d..827458d 100644 Binary files a/doc/src/declarative/pics/declarative-adv-tutorial4.gif and b/doc/src/declarative/pics/declarative-adv-tutorial4.gif differ -- cgit v0.12 From 605f47d61c44e1219811b2d68d3fcb51ab284015 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 7 Oct 2009 16:51:00 +1000 Subject: Fix QFxTextInput It was accepting input on both press and release, for some reason --- src/declarative/fx/qfxtextinput.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/declarative/fx/qfxtextinput.cpp b/src/declarative/fx/qfxtextinput.cpp index b7b155a..05d2260 100644 --- a/src/declarative/fx/qfxtextinput.cpp +++ b/src/declarative/fx/qfxtextinput.cpp @@ -594,6 +594,7 @@ bool QFxTextInput::event(QEvent* ev) bool handled = false; switch(ev->type()){ case QEvent::KeyPress: + case QEvent::KeyRelease://###Should the control be doing anything with release? case QEvent::GraphicsSceneMousePress: break; default: -- cgit v0.12