Merge lp:~thomas-moenicke/phablet-extras/maliit-framework-fix-inputMethodArea into lp:phablet-extras/maliit-framework

Proposed by Thomas Moenicke
Status: Merged
Approved by: Bill Filler
Approved revision: 1554
Merged at revision: 1553
Proposed branch: lp:~thomas-moenicke/phablet-extras/maliit-framework-fix-inputMethodArea
Merge into: lp:phablet-extras/maliit-framework
Diff against target: 32 lines (+11/-2)
2 files modified
debian/changelog (+6/-0)
src/minputmethodhost.cpp (+5/-2)
To merge this branch: bzr merge lp:~thomas-moenicke/phablet-extras/maliit-framework-fix-inputMethodArea
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Bill Filler Pending
Thomas Moenicke Pending
Review via email: mp+155932@code.launchpad.net

Commit message

  fixes issue when keyboard shows up, it did not forward the new inputMethodArea to the app (merge issue in r1551)

Description of the change

  fixes issue when keyboard shows up, it did not forward the new inputMethodArea to the app (merge issue in r1551)

To post a comment you must log in.
1554. By Thomas Moenicke

bump changelog

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Bill Filler (bfiller) wrote :

Approved

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-03-25 20:32:42 +0000
3+++ debian/changelog 2013-03-28 11:13:22 +0000
4@@ -1,3 +1,9 @@
5+maliit-framework (0.94.2phablet2) quantal; urgency=low
6+
7+ * fixes issue when keyboard shows up, it did not forward the new inputMethodArea to the app
8+
9+ -- Thomas Moenicke <thomas@pachamama> Thu, 28 Mar 2013 12:10:27 +0100
10+
11 maliit-framework (0.94.2phablet1) quantal; urgency=low
12
13 * Switching to version scheme similar to the one in ubuntu.
14
15=== modified file 'src/minputmethodhost.cpp'
16--- src/minputmethodhost.cpp 2013-03-21 13:59:07 +0000
17+++ src/minputmethodhost.cpp 2013-03-28 11:13:22 +0000
18@@ -209,9 +209,12 @@
19 }
20 }
21
22-void MInputMethodHost::setInputMethodArea(const QRegion &)
23+void MInputMethodHost::setInputMethodArea(const QRegion & r)
24 {
25- // TODO: remove function since it is handled by surfaces now
26+ // note: this has been removed in upstream, but we still need this
27+ if (enabled) {
28+ connection->updateInputMethodArea(r);
29+ }
30 }
31
32 void MInputMethodHost::setSelection(int start, int length)

Subscribers

People subscribed via source and target branches