This commit is contained in:
Alexey Kulish 2017-04-08 19:10:51 +03:00
parent 9ce43f3f40
commit 7ece07899c
2 changed files with 9 additions and 1 deletions

View file

@ -79,6 +79,6 @@ public class AddOSMBugAction extends QuickAction {
getParams().put(KEY_SHO_DIALOG, String.valueOf(showDialog.isChecked()));
getParams().put(KEY_MESSAGE, message.getText().toString());
return !(Boolean.valueOf(getParams().get(KEY_SHO_DIALOG)) && getParams().get(KEY_MESSAGE).isEmpty());
return true;
}
}

View file

@ -0,0 +1,8 @@
package net.osmand.plus.quickaction.actions;
/**
* Created by Alexey Kulish on 08/04/2017.
*/
public class ShowHideOSMBugAction {
}