mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-05 20:15:58 +00:00
Bug 710302 - going to about: pages does a 'feeling lucky' search [r=mfinkle a=java-only]
This commit is contained in:
parent
724b7f5edb
commit
87673c259e
@ -234,7 +234,7 @@ public class AwesomeBar extends Activity implements GeckoEventListener {
|
||||
// If a space is found before any dot or colon, we assume this is a search query
|
||||
boolean spacedOut = space > -1 && (space < colon || space < dot);
|
||||
|
||||
return spacedOut || (dot == -1);
|
||||
return spacedOut || (dot == -1 && colon == -1);
|
||||
}
|
||||
|
||||
private void updateGoButton(String text) {
|
||||
|
Loading…
Reference in New Issue
Block a user