Closed
Bug 620695
Opened 14 years ago
Closed 14 years ago
Terms entered in search field from http://bugzilla.mozilla.org are not considered
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(fennec2.0b4+)
VERIFIED
FIXED
Tracking | Status | |
---|---|---|
fennec | 2.0b4+ | --- |
People
(Reporter: anamaria.moldovan, Assigned: blassey)
References
()
Details
Attachments
(1 file, 1 obsolete file)
697 bytes,
patch
|
jchen
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:2.0b8) Gecko/20100101 Firefox/4.0b8
Build Identifier: Mozilla /5.0 (Android;Linux armv7l;rv:2.0b9pre) Gecko/20101221 Firefox/4.0b9pre Fennec /4.0b4pre
Terms entered in search field from http://bugzilla.mozilla.org are not considered.
Device: Motorola Droid 2 (Android 2.2)
Reproducible: Always
Steps to Reproduce:
1. Go to Bugzilla
2. Tap on the search field
3. Enter a search term (eg: "twitter") and press "Quick search" button.
Actual Results:
A message box saying: "Please enter one or more search terms first".
Expected Results:
A page with the search results.
Reporter | ||
Updated•14 years ago
|
OS: Other → Android
Hardware: Other → ARM
Comment 1•14 years ago
|
||
Is this because you did not press the "Search" button on the virtual keyboard? I have noticed that the text entered via the keyboard is not sent to the textbox as you type.
Assignee | ||
Updated•14 years ago
|
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
Updated•14 years ago
|
Status: RESOLVED → VERIFIED
Assignee | ||
Updated•14 years ago
|
Status: VERIFIED → REOPENED
Resolution: DUPLICATE → ---
Assignee | ||
Comment 5•14 years ago
|
||
This patch commits the composition when the text box is un-focused.
Assignee | ||
Updated•14 years ago
|
tracking-fennec: --- → 2.0b4+
Comment 7•14 years ago
|
||
Comment on attachment 500924 [details] [diff] [review]
patch
>diff --git a/embedding/android/GeckoAppShell.java b/embedding/android/GeckoAppShell.java
>--- a/embedding/android/GeckoAppShell.java
>+++ b/embedding/android/GeckoAppShell.java
>@@ -255,6 +255,7 @@ class GeckoAppShell
> break;
>
> case NOTIFY_IME_FOCUSCHANGE:
>+ GeckoApp.surfaceView.inputConnection.finishComposingText();
> GeckoApp.surfaceView.mIMEFocus = state != 0;
> IMEStateUpdater.resetIME();
> break;
I think it's better to call finishComposingText under NOTIFY_IME_RESETINPUTSTATE instead of NOTIFY_IME_FOCUSCHANGE
Attachment #500924 -
Flags: review?(mwu) → review?(jimnchen+bmo)
Assignee | ||
Comment 8•14 years ago
|
||
(In reply to comment #7)
> Comment on attachment 500924 [details] [diff] [review]
> patch
>
> >diff --git a/embedding/android/GeckoAppShell.java b/embedding/android/GeckoAppShell.java
> >--- a/embedding/android/GeckoAppShell.java
> >+++ b/embedding/android/GeckoAppShell.java
> >@@ -255,6 +255,7 @@ class GeckoAppShell
> > break;
> >
> > case NOTIFY_IME_FOCUSCHANGE:
> >+ GeckoApp.surfaceView.inputConnection.finishComposingText();
> > GeckoApp.surfaceView.mIMEFocus = state != 0;
> > IMEStateUpdater.resetIME();
> > break;
>
> I think it's better to call finishComposingText under
> NOTIFY_IME_RESETINPUTSTATE instead of NOTIFY_IME_FOCUSCHANGE
that works
Attachment #500924 -
Attachment is obsolete: true
Attachment #501360 -
Flags: review?(jimnchen+bmo)
Attachment #500924 -
Flags: review?(jimnchen+bmo)
Comment 9•14 years ago
|
||
Comment on attachment 501360 [details] [diff] [review]
patch
Thanks!
Attachment #501360 -
Flags: review?(jimnchen+bmo) → review+
Assignee | ||
Comment 10•14 years ago
|
||
Status: NEW → RESOLVED
Closed: 14 years ago → 14 years ago
Resolution: --- → FIXED
Comment 11•14 years ago
|
||
verified FIXED on build:
Mozilla/5.0 (Android; Linux armv71; rv:2.0b13pre) Gecko/20110317 Firefox/4.0b13pre Fennec/4.0b6pre
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•