Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Donskoy <donskdmitry@mail.ru>2018-11-08 15:10:28 +0300
committerAleksandr Zatsepin <alexzatsepin@users.noreply.github.com>2018-11-08 18:15:46 +0300
commit23c69ac4ee77601418a227c42b341dce253d01d6 (patch)
treea04d92fb82aaa3af78ceed7dc96f36739d9935de /android/src/com/mapswithme/maps/editor
parentdd5d537e7ecd33517eb80e6efd3ddaf64cacc2d8 (diff)
[android] Supported upload, publishing and direct link mode for bookmarks category
Diffstat (limited to 'android/src/com/mapswithme/maps/editor')
-rw-r--r--android/src/com/mapswithme/maps/editor/HoursMinutesPickerFragment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/src/com/mapswithme/maps/editor/HoursMinutesPickerFragment.java b/android/src/com/mapswithme/maps/editor/HoursMinutesPickerFragment.java
index d5333b3a55..b1168cfb63 100644
--- a/android/src/com/mapswithme/maps/editor/HoursMinutesPickerFragment.java
+++ b/android/src/com/mapswithme/maps/editor/HoursMinutesPickerFragment.java
@@ -142,8 +142,8 @@ public class HoursMinutesPickerFragment extends BaseMwmDialogFragment
TextView tabView = (TextView) inflater.inflate(R.layout.tab_timepicker, mTabs, false);
// TODO @yunik add translations
tabView.setText("From");
- final ColorStateList textColor = getResources().getColorStateList(ThemeUtils.isNightTheme() ? R.color.tab_text_night
- : R.color.tab_text);
+ final ColorStateList textColor = getResources().getColorStateList(ThemeUtils.isNightTheme() ? R.color.accent_color_selector_night
+ : R.color.accent_color_selector);
tabView.setTextColor(textColor);
mTabs.addTab(mTabs.newTab().setCustomView(tabView), true);
tabView = (TextView) inflater.inflate(R.layout.tab_timepicker, mTabs, false);