Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 10 additions & 10 deletions src/main/java/de/blau/android/DisambiguationMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -381,25 +381,25 @@ private Drawable getDrawable(DisambiguationMenuItem item) {
if (type != null) {
switch (type) {
case NODE:
return ContextCompat.getDrawable(context, R.drawable.element_node);
return ContextCompat.getDrawable(context, R.drawable.icon_node);
case WAY:
return ContextCompat.getDrawable(context, R.drawable.element_way);
return ContextCompat.getDrawable(context, R.drawable.icon_way);
case RELATION:
return ContextCompat.getDrawable(context, R.drawable.element_relation);
return ContextCompat.getDrawable(context, R.drawable.icon_relation);
case BUG:
return ContextCompat.getDrawable(context, R.drawable.bug_small);
return ContextCompat.getDrawable(context, R.drawable.icon_bug);
case NOTE:
return ContextCompat.getDrawable(context, R.drawable.note_small);
return ContextCompat.getDrawable(context, R.drawable.icon_note);
case TODO:
return ContextCompat.getDrawable(context, R.drawable.todo_small);
return ContextCompat.getDrawable(context, R.drawable.icon_todo);
case MAPROULETTE:
return ContextCompat.getDrawable(context, R.drawable.maproulette_small);
return ContextCompat.getDrawable(context, R.drawable.icon_maproulette);
case GEOJSON:
return ContextCompat.getDrawable(context, R.drawable.geojson);
return ContextCompat.getDrawable(context, R.drawable.icon_geojson);
case GPX:
return ContextCompat.getDrawable(context, R.drawable.gpx);
return ContextCompat.getDrawable(context, R.drawable.icon_gpx);
case IMAGE:
return ContextCompat.getDrawable(context, R.drawable.photo_small);
return ContextCompat.getDrawable(context, R.drawable.icon_photo);
case MAPILLARY:
return ContextCompat.getDrawable(context, R.drawable.mapillary_small);
case PANORAMAX:
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/blau/android/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -1669,9 +1669,9 @@ private void setupFollowButton() {
*/
private void setFollowImage(boolean gps, boolean isVisible) {
FloatingActionButton followButton = getFollowButton();
int buttonRes = R.drawable.ic_filter_tilt_shift_black_36dp;
int buttonRes = R.drawable.gps_off_black;
if (gps) {
buttonRes = R.drawable.ic_gps_fixed_black_36dp;
buttonRes = R.drawable.gps_on_black;
}
followButton.setImageResource(buttonRes);
if (isVisible) {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/blau/android/Mode.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public enum Mode {
/**
* Address adding mode
*/
MODE_ADDRESS(R.string.mode_address, "ADDRESS", true, true, true, true, null, R.drawable.unlocked_address_white, new FilterModeConfig() {
MODE_ADDRESS(R.string.mode_address, "ADDRESS", true, true, true, true, null, R.drawable.address_white, new FilterModeConfig() {

@Override
public Set<SimpleAction> enabledSimpleActions() {
Expand Down Expand Up @@ -141,7 +141,7 @@ public <M extends Map<String, String> & Serializable> M getExtraTags(@NonNull Lo
public <L extends List<PresetElementPath> & Serializable> L getPresetItems(@NonNull Context ctx, @NonNull OsmElement e) {
return (L) new ArrayList<PresetElementPath>();
}
}), MODE_CORRECT(R.string.mode_correct, "CORRECT", true, true, true, false, null, R.drawable.unlocked_correct_white, new ModeConfig() {
}), MODE_CORRECT(R.string.mode_correct, "CORRECT", true, true, true, false, null, R.drawable.bug_white, new ModeConfig() {

@Override
public void setup(final Main main, final Logic logic) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/blau/android/dialogs/ConsoleDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public Dialog onCreateDialog(Bundle savedInstanceState) {
Button negative = ((AlertDialog) d).getButton(DialogInterface.BUTTON_NEGATIVE);
negative.setOnClickListener(view -> runScript(dialog, callback, output, dismissOnRun, checkbox1, checkbox2));
Button positive = ((AlertDialog) d).getButton(DialogInterface.BUTTON_POSITIVE);
Drawable more = ThemeUtils.getTintedDrawable(activity, R.drawable.ic_more_vert_black_24dp, R.attr.colorAccent);
Drawable more = ThemeUtils.getTintedDrawable(activity, R.drawable.more_black, R.attr.colorAccent);
positive.setCompoundDrawablesWithIntrinsicBounds(null, null, more, null);
positive.setText("");
positive.setOnClickListener(view -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public boolean onCreateActionMode(ActionMode mode, Menu menu) {
FloatingActionButton button = main.getSimpleActionsButton();
button.setOnClickListener(v -> finishBuilding());
savedButton = button.getDrawable();
button.setImageResource(R.drawable.ic_done_white_36dp);
button.setImageResource(R.drawable.check_white);
if (!prefs.areSimpleActionsEnabled()) {
main.showSimpleActionsButton();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public boolean onCreateActionMode(ActionMode mode, Menu menu) {
FloatingActionButton button = main.getSimpleActionsButton();
button.setOnClickListener(v -> manager.startElementSelectionMode());
savedButton = button.getDrawable();
button.setImageResource(R.drawable.ic_done_white_36dp);
button.setImageResource(R.drawable.check_white);
mode.setTitle(R.string.actionmode_rotate);
mode.setSubtitle(null);
return true;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/blau/android/filter/PresetFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void setPresetElement(@NonNull Context ctx, @NonNull PresetElementPath path) {
element = Preset.getElementByPath(searchPreset.getRootGroup(), path);
if (element == null) {
if (presetFilterButton != null) {
presetFilterButton.setImageResource(R.drawable.ic_filter_list_black_36dp);
presetFilterButton.setImageResource(R.drawable.filter_black);
}
preset = null;
Log.e(DEBUG_TAG, path.toString() + " not found");
Expand Down Expand Up @@ -210,7 +210,7 @@ private void setIcon(@NonNull final Context ctx) {
BitmapDrawable buttonIcon = new BitmapDrawable(ctx.getResources(), icon.getBitmap());
presetFilterButton.setImageDrawable(buttonIcon);
} else {
presetFilterButton.setImageResource(R.drawable.ic_filter_list_black_36dp);
presetFilterButton.setImageResource(R.drawable.filter_black);
}
presetFilterButton.hide(); // workaround https://issuetracker.google.com/issues/117476935
presetFilterButton.show();
Expand All @@ -237,7 +237,7 @@ public void removeControls() {
@Override
public void hideControls() {
if (presetFilterButton != null) {
presetFilterButton.setImageResource(R.drawable.ic_filter_list_black_36dp);
presetFilterButton.setImageResource(R.drawable.filter_black);
presetFilterButton.hide();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public boolean onCreateActionMode(ActionMode mode, Menu menu) {
button.setOnClickListener(v -> saveAndFinish());
savedButtonDrawable = button.getDrawable();
savedButtonEnabled = button.isEnabled();
button.setImageResource(R.drawable.ic_done_white_36dp);
button.setImageResource(R.drawable.check_white);
main.enableSimpleActionsButton();
if (!prefs.areSimpleActionsEnabled()) {
main.showSimpleActionsButton();
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/blau/android/layer/photos/MapOverlay.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ public MapOverlay(@NonNull final Map map) {
Context context = map.getContext();
this.map = map;
photos = new ArrayList<>();
icon = ContextCompat.getDrawable(context, R.drawable.camera_red);
selectedIcon = ContextCompat.getDrawable(context, R.drawable.camera_green);
icon = ContextCompat.getDrawable(context, R.drawable.photo_unselected);
selectedIcon = ContextCompat.getDrawable(context, R.drawable.photo_selected);
// note this assumes the icons are the same size
w2 = icon.getIntrinsicWidth() / 2;
h2 = icon.getIntrinsicHeight() / 2;
Expand Down
18 changes: 9 additions & 9 deletions src/main/java/de/blau/android/photos/PhotoViewerFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -447,13 +447,13 @@ private View createView(@Nullable Bundle savedInstanceState) {

menuView = (ActionMenuView) layout.findViewById(R.id.photoMenuView);
Menu menu = menuView.getMenu();
itemBackward = menu.add(Menu.NONE, MENUITEM_BACK, Menu.NONE, R.string.back).setIcon(R.drawable.ic_arrow_back_white_36dp);
itemBackward = menu.add(Menu.NONE, MENUITEM_BACK, Menu.NONE, R.string.back).setIcon(R.drawable.back_white);
itemBackward.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
menu.add(Menu.NONE, MENUITEM_SHARE, Menu.NONE, R.string.share).setIcon(R.drawable.ic_share_white_36dp).setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
menu.add(Menu.NONE, MENUITEM_GOTO, Menu.NONE, R.string.photo_viewer_goto).setIcon(R.drawable.ic_map_white_36dp)
menu.add(Menu.NONE, MENUITEM_SHARE, Menu.NONE, R.string.share).setIcon(R.drawable.share_white).setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
menu.add(Menu.NONE, MENUITEM_GOTO, Menu.NONE, R.string.photo_viewer_goto).setIcon(R.drawable.map_white)
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
if (photoLoader.supportsInfo()) {
menu.add(Menu.NONE, MENUITEM_INFO, Menu.NONE, R.string.menu_information).setIcon(R.drawable.outline_info_white_48dp)
menu.add(Menu.NONE, MENUITEM_INFO, Menu.NONE, R.string.menu_information).setIcon(R.drawable.info_white)
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
}
if (photoLoader.supportsUpload() && photoLoader.supportsDelete() && photoLoader.supportsInfo()) {
Expand All @@ -464,15 +464,15 @@ private View createView(@Nullable Bundle savedInstanceState) {
overflow.add(Menu.NONE, MENUITEM_DELETE, Menu.NONE, R.string.delete);
} else {
if (photoLoader.supportsUpload()) {
menu.add(Menu.NONE, MENUITEM_UPLOAD, Menu.NONE, R.string.photo_viewer_upload).setIcon(R.drawable.outline_import_export_white_36)
menu.add(Menu.NONE, MENUITEM_UPLOAD, Menu.NONE, R.string.photo_viewer_upload).setIcon(R.drawable.sync_white)
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
}
if (photoLoader.supportsDelete()) {
menu.add(Menu.NONE, MENUITEM_DELETE, Menu.NONE, R.string.delete).setIcon(R.drawable.ic_delete_forever_white_36dp)
menu.add(Menu.NONE, MENUITEM_DELETE, Menu.NONE, R.string.delete).setIcon(R.drawable.delete_forever_white)
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
}
}
itemForward = menu.add(Menu.NONE, MENUITEM_FORWARD, Menu.NONE, R.string.forward).setIcon(R.drawable.ic_arrow_forward_white_36dp);
itemForward = menu.add(Menu.NONE, MENUITEM_FORWARD, Menu.NONE, R.string.forward).setIcon(R.drawable.forward_white);
itemForward.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
menuView.setOnMenuItemClickListener(this);
prepareMenu();
Expand All @@ -491,10 +491,10 @@ void prepareMenu() {
final boolean forwardEnabled = multiple && (wrap || pos < size - 1);
itemForward.setEnabled(forwardEnabled);
// for whatever reason drawables with state lists don't seem to work in menus
itemForward.setIcon(forwardEnabled ? R.drawable.ic_arrow_forward_white_36dp : R.drawable.ic_arrow_forward_dimmed_36dp);
itemForward.setIcon(forwardEnabled ? R.drawable.forward_white : R.drawable.forward_dim);
final boolean backwardEnabled = multiple && (wrap || pos > 0);
itemBackward.setEnabled(backwardEnabled);
itemBackward.setIcon(backwardEnabled ? R.drawable.ic_arrow_back_white_36dp : R.drawable.ic_arrow_back_dimmed_36dp);
itemBackward.setIcon(backwardEnabled ? R.drawable.back_white : R.drawable.back_dim);
}

private class PhotoPagerAdapter<S extends Serializable> extends ImagePagerAdapter<S> {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/de/blau/android/util/SelectByImageFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,14 @@ private View createView(@Nullable Bundle savedInstanceState) {
ActionMenuView menuView = (ActionMenuView) layout.findViewById(R.id.photoMenuView);
Menu menu = menuView.getMenu();

MenuItem itemBackward = menu.add(Menu.NONE, MENUITEM_BACK, Menu.NONE, R.string.back).setIcon(R.drawable.ic_arrow_back_white_36dp);
MenuItem itemBackward = menu.add(Menu.NONE, MENUITEM_BACK, Menu.NONE, R.string.back).setIcon(R.drawable.back_white);
itemBackward.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
itemBackward.setEnabled(true);
itemBackward.setIcon(R.drawable.ic_arrow_back_white_36dp);
MenuItem itemForward = menu.add(Menu.NONE, MENUITEM_FORWARD, Menu.NONE, R.string.forward).setIcon(R.drawable.ic_arrow_forward_white_36dp);
itemBackward.setIcon(R.drawable.back_white);
MenuItem itemForward = menu.add(Menu.NONE, MENUITEM_FORWARD, Menu.NONE, R.string.forward).setIcon(R.drawable.forward_white);
itemForward.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
itemForward.setEnabled(true);
itemForward.setIcon(R.drawable.ic_arrow_forward_white_36dp);
itemForward.setIcon(R.drawable.forward_white);
menuView.setOnMenuItemClickListener(this);
return layout;
}
Expand Down
Binary file added src/main/res/drawable-xhdpi/address_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/main/res/drawable-xhdpi/address_dark.png
Binary file not shown.
Binary file removed src/main/res/drawable-xhdpi/address_light.png
Binary file not shown.
Binary file added src/main/res/drawable-xhdpi/address_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/main/res/drawable-xhdpi/apply_preset_dark.png
Binary file not shown.
Binary file removed src/main/res/drawable-xhdpi/apply_preset_light.png
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/res/drawable-xhdpi/back_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/res/drawable-xhdpi/back_dim.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/res/drawable-xhdpi/back_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/main/res/drawable-xhdpi/baseline_check_black_18.png
Binary file not shown.
Binary file removed src/main/res/drawable-xhdpi/baseline_check_white_18.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/main/res/drawable-xhdpi/bridge_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/main/res/drawable-xhdpi/bridge_dark.png
Binary file not shown.
Binary file removed src/main/res/drawable-xhdpi/bridge_light.png
Binary file not shown.
Binary file added src/main/res/drawable-xhdpi/bridge_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/res/drawable-xhdpi/bug_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/res/drawable-xhdpi/bug_changed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/res/drawable-xhdpi/bug_changed_closed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/res/drawable-xhdpi/bug_closed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/main/res/drawable-xhdpi/bug_dark.png
Binary file not shown.
Binary file removed src/main/res/drawable-xhdpi/bug_light.png
Diff not rendered.
Binary file modified src/main/res/drawable-xhdpi/bug_open.png
Binary file added src/main/res/drawable-xhdpi/bug_white.png
Binary file removed src/main/res/drawable-xhdpi/camera_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/camera_green.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/camera_light.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/camera_red.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/check_black.png
Binary file added src/main/res/drawable-xhdpi/check_white.png
Binary file added src/main/res/drawable-xhdpi/chevron_down_black.png
Binary file added src/main/res/drawable-xhdpi/chevron_up_black.png
Binary file added src/main/res/drawable-xhdpi/clear_black.png
Binary file added src/main/res/drawable-xhdpi/clear_white.png
Binary file added src/main/res/drawable-xhdpi/collapse_black.png
Binary file added src/main/res/drawable-xhdpi/collapse_white.png
Binary file removed src/main/res/drawable-xhdpi/content_duplicate_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/content_duplicate_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/copy_black.png
Binary file added src/main/res/drawable-xhdpi/copy_white.png
Binary file added src/main/res/drawable-xhdpi/culvert_black.png
Binary file removed src/main/res/drawable-xhdpi/culvert_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/culvert_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/culvert_white.png
Binary file added src/main/res/drawable-xhdpi/cut_dark.png
Binary file added src/main/res/drawable-xhdpi/cut_white.png
Binary file added src/main/res/drawable-xhdpi/delete_forever_black.png
Binary file added src/main/res/drawable-xhdpi/delete_forever_white.png
Binary file added src/main/res/drawable-xhdpi/discard_black.png
Binary file added src/main/res/drawable-xhdpi/discard_white.png
Binary file added src/main/res/drawable-xhdpi/download_black.png
Binary file added src/main/res/drawable-xhdpi/download_white.png
Binary file added src/main/res/drawable-xhdpi/duplicate_black.png
Binary file added src/main/res/drawable-xhdpi/duplicate_white.png
Binary file added src/main/res/drawable-xhdpi/edit_black.png
Binary file added src/main/res/drawable-xhdpi/edit_white.png
Binary file added src/main/res/drawable-xhdpi/expand_black.png
Binary file added src/main/res/drawable-xhdpi/expand_white.png
Binary file removed src/main/res/drawable-xhdpi/extract_node_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/extract_node_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/filter_black.png
Binary file added src/main/res/drawable-xhdpi/follow_black.png
Binary file removed src/main/res/drawable-xhdpi/follow_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/follow_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/follow_white.png
Binary file added src/main/res/drawable-xhdpi/forward_black.png
Binary file added src/main/res/drawable-xhdpi/forward_dim.png
Binary file added src/main/res/drawable-xhdpi/forward_white.png
Binary file added src/main/res/drawable-xhdpi/gps_off_black.png
Binary file added src/main/res/drawable-xhdpi/gps_on_black.png
Binary file added src/main/res/drawable-xhdpi/help_black.png
Binary file added src/main/res/drawable-xhdpi/help_white.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_action_mic_holo_dark.png
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_action_new_holo_dark.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_action_time_holo_light.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_add_black_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_add_white_36dp.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_clear_black_18dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_clear_white_18dp.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_create_black_18dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_create_white_18dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_crop_free_black_24dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_crop_free_white_24dp.png
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_done_black_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_done_white_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_drawer_holo_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_drawer_holo_light.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_forward_white_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_gps_fixed_black_36dp.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_map_white_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_menu_cut_holo_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_menu_cut_holo_light.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_more_vert_black_24dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_more_vert_black_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_more_vert_white_24dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_remove_black_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_remove_white_36dp.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_share_black_36dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ic_share_white_36dp.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/info_black.png
Binary file added src/main/res/drawable-xhdpi/info_black_1.png
Binary file added src/main/res/drawable-xhdpi/info_white.png
Binary file added src/main/res/drawable-xhdpi/info_white_1.png
Binary file added src/main/res/drawable-xhdpi/labels_black.png
Binary file added src/main/res/drawable-xhdpi/labels_white.png
Binary file added src/main/res/drawable-xhdpi/layer_list_black.png
Binary file modified src/main/res/drawable-xhdpi/lightbulb_black.png
Binary file modified src/main/res/drawable-xhdpi/lightbulb_white.png
Binary file modified src/main/res/drawable-xhdpi/locked.png
Binary file modified src/main/res/drawable-xhdpi/locked_opaque.png
Binary file added src/main/res/drawable-xhdpi/low_priority_black.png
Binary file added src/main/res/drawable-xhdpi/low_priority_white.png
Binary file added src/main/res/drawable-xhdpi/map_white.png
Binary file modified src/main/res/drawable-xhdpi/mapillary_small.png
Binary file added src/main/res/drawable-xhdpi/menu_black.png
Binary file added src/main/res/drawable-xhdpi/menu_white.png
Binary file added src/main/res/drawable-xhdpi/merge_dark.png
Binary file added src/main/res/drawable-xhdpi/merge_light.png
Binary file added src/main/res/drawable-xhdpi/mic_black.png
Binary file added src/main/res/drawable-xhdpi/mic_white.png
Binary file added src/main/res/drawable-xhdpi/more_black.png
Binary file added src/main/res/drawable-xhdpi/more_white.png
Binary file added src/main/res/drawable-xhdpi/multi_select_black.png
Binary file removed src/main/res/drawable-xhdpi/multi_select_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/multi_select_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/multi_select_white.png
Binary file added src/main/res/drawable-xhdpi/name_black.png
Binary file removed src/main/res/drawable-xhdpi/name_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/name_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/name_white.png
Binary file added src/main/res/drawable-xhdpi/new_black.png
Binary file added src/main/res/drawable-xhdpi/new_white.png
Binary file removed src/main/res/drawable-xhdpi/no_left_turn_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/no_left_turn_light.png
Diff not rendered.
Binary file modified src/main/res/drawable-xhdpi/note_changed.png
Binary file modified src/main/res/drawable-xhdpi/note_changed_closed.png
Binary file modified src/main/res/drawable-xhdpi/note_closed.png
Binary file modified src/main/res/drawable-xhdpi/note_open.png
Binary file removed src/main/res/drawable-xhdpi/ortho_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/ortho_light.png
Diff not rendered.
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/outline_info_white_48dp.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/outline_search_black_18.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/outline_search_white_18.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/paste_black.png
Binary file added src/main/res/drawable-xhdpi/paste_white.png
Binary file added src/main/res/drawable-xhdpi/photo_selected.png
Binary file added src/main/res/drawable-xhdpi/photo_unselected.png
Binary file added src/main/res/drawable-xhdpi/preset_black.png
Binary file removed src/main/res/drawable-xhdpi/preset_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/preset_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/preset_top_black.png
Binary file removed src/main/res/drawable-xhdpi/preset_top_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/preset_top_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/preset_top_white.png
Binary file added src/main/res/drawable-xhdpi/preset_up_black.png
Binary file removed src/main/res/drawable-xhdpi/preset_up_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/preset_up_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/preset_up_white.png
Binary file added src/main/res/drawable-xhdpi/preset_white.png
Binary file added src/main/res/drawable-xhdpi/redo_black.png
Binary file added src/main/res/drawable-xhdpi/redo_white.png
Binary file added src/main/res/drawable-xhdpi/reply_black.png
Binary file added src/main/res/drawable-xhdpi/rotate_right_dark.png
Binary file added src/main/res/drawable-xhdpi/save_black.png
Binary file added src/main/res/drawable-xhdpi/save_white.png
Binary file added src/main/res/drawable-xhdpi/sd_card_black.png
Binary file added src/main/res/drawable-xhdpi/sd_card_white.png
Binary file added src/main/res/drawable-xhdpi/search_black.png
Binary file added src/main/res/drawable-xhdpi/search_white.png
Binary file added src/main/res/drawable-xhdpi/settings_black.png
Binary file added src/main/res/drawable-xhdpi/settings_white.png
Binary file added src/main/res/drawable-xhdpi/share_black.png
Binary file removed src/main/res/drawable-xhdpi/share_dark.png
Diff not rendered.
Binary file removed src/main/res/drawable-xhdpi/share_light.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/share_white.png
Binary file removed src/main/res/drawable-xhdpi/snap_off.png
Diff not rendered.
Binary file added src/main/res/drawable-xhdpi/snap_off_black.png
Binary file removed src/main/res/drawable-xhdpi/snap_off_dark.png
Diff not rendered.
Loading
Loading