Merge pull request #11372 from osmandapp/Plan-route-show-hide
Plan route show hide
This commit is contained in:
commit
236f4c05b6
2 changed files with 5 additions and 7 deletions
|
@ -852,9 +852,9 @@ public class TrackMenuFragment extends ContextMenuScrollFragment implements Card
|
|||
osmEditingPlugin.sendGPXFiles(mapActivity, this, gpxInfo);
|
||||
}
|
||||
} else if (buttonIndex == EDIT_BUTTON_INDEX) {
|
||||
dismiss();
|
||||
String fileName = Algorithms.getFileWithoutDirs(gpxFile.path);
|
||||
MeasurementToolFragment.showInstance(mapActivity.getSupportFragmentManager(), fileName);
|
||||
dismiss();
|
||||
} else if (buttonIndex == RENAME_BUTTON_INDEX) {
|
||||
FileUtils.renameFile(mapActivity, new File(gpxFile.path), this, true);
|
||||
} else if (buttonIndex == CHANGE_FOLDER_BUTTON_INDEX) {
|
||||
|
|
|
@ -21,10 +21,10 @@ import java.lang.ref.WeakReference;
|
|||
|
||||
public class WidgetsVisibilityHelper {
|
||||
|
||||
private MapActivity mapActivity;
|
||||
private OsmandSettings settings;
|
||||
private RoutingHelper routingHelper;
|
||||
private MapActivityLayers mapLayers;
|
||||
private final MapActivity mapActivity;
|
||||
private final OsmandSettings settings;
|
||||
private final RoutingHelper routingHelper;
|
||||
private final MapActivityLayers mapLayers;
|
||||
|
||||
public WidgetsVisibilityHelper(@NonNull MapActivity mapActivity) {
|
||||
this.mapActivity = mapActivity;
|
||||
|
@ -104,7 +104,6 @@ public class WidgetsVisibilityHelper {
|
|||
public boolean shouldHideCompass() {
|
||||
return mapActivity.shouldHideTopControls()
|
||||
|| isTrackDetailsMenuOpened()
|
||||
|| isInMeasurementToolMode()
|
||||
|| isInPlanRouteMode()
|
||||
|| isInChoosingRoutesMode()
|
||||
|| isInTrackAppearanceMode()
|
||||
|
@ -116,7 +115,6 @@ public class WidgetsVisibilityHelper {
|
|||
public boolean shouldShowTopButtons() {
|
||||
return !mapActivity.shouldHideTopControls()
|
||||
&& !isTrackDetailsMenuOpened()
|
||||
&& !isInMeasurementToolMode()
|
||||
&& !isInPlanRouteMode()
|
||||
&& !isInChoosingRoutesMode()
|
||||
&& !isInTrackAppearanceMode()
|
||||
|
|
Loading…
Reference in a new issue