Skip to content

Commit

Permalink
Fixed bug preventing widget from being created
Browse files Browse the repository at this point in the history
  • Loading branch information
plafue committed May 17, 2015
1 parent b8829c0 commit 555b345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/me/writeily/dialog/FilesystemDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void sendBroadcast(String name) {
if (isMovingFile) {
broadcast.setAction(Constants.FILESYSTEM_MOVE_DIALOG_TAG);
broadcast.putExtra(Constants.FILESYSTEM_FILE_NAME, name);
} else if (isSelectingFolder) {
} else if (isSelectingFolder || isSelectingForWidget) {
broadcast.setAction(Constants.FILESYSTEM_SELECT_FOLDER_TAG);
broadcast.putExtra(Constants.FILESYSTEM_FILE_NAME, name);
} else {
Expand Down

0 comments on commit 555b345

Please sign in to comment.