Fix fav/wpt search priority
This commit is contained in:
parent
9c42b6d387
commit
dc3f3db408
1 changed files with 7 additions and 7 deletions
|
@ -22,13 +22,13 @@ import net.osmand.search.core.SearchResult;
|
|||
|
||||
public class QuickSearchHelper implements ResourceListener {
|
||||
|
||||
public static final int SEARCH_FAVORITE_API_PRIORITY = 2;
|
||||
public static final int SEARCH_FAVORITE_API_CATEGORY_PRIORITY = 7;
|
||||
public static final int SEARCH_FAVORITE_OBJECT_PRIORITY = 10;
|
||||
public static final int SEARCH_WPT_API_PRIORITY = 2;
|
||||
public static final int SEARCH_WPT_OBJECT_PRIORITY = 10;
|
||||
public static final int SEARCH_HISTORY_API_PRIORITY = 3;
|
||||
public static final int SEARCH_HISTORY_OBJECT_PRIORITY = 10;
|
||||
public static final int SEARCH_FAVORITE_API_PRIORITY = 1;
|
||||
public static final int SEARCH_FAVORITE_API_CATEGORY_PRIORITY = 1;
|
||||
public static final int SEARCH_FAVORITE_OBJECT_PRIORITY = 0;
|
||||
public static final int SEARCH_WPT_API_PRIORITY = 1;
|
||||
public static final int SEARCH_WPT_OBJECT_PRIORITY = 0;
|
||||
public static final int SEARCH_HISTORY_API_PRIORITY = 1;
|
||||
public static final int SEARCH_HISTORY_OBJECT_PRIORITY = 0;
|
||||
private OsmandApplication app;
|
||||
private SearchUICore core;
|
||||
private SearchResultCollection resultCollection;
|
||||
|
|
Loading…
Reference in a new issue