Browse Source

Fixed AddCommandShortcutActivity

develop
Robin Thoni 6 years ago
parent
commit
0c2b5e980e

+ 1
- 1
app/src/main/java/com/rthoni/camotion/ui/AddCommandShortcutActivity.java View File

87
         intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, command.getName());
87
         intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, command.getName());
88
         intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
88
         intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
89
 
89
 
90
-        sendBroadcast(intent);
90
+        setResult(RESULT_OK, intent);
91
         finish();
91
         finish();
92
     }
92
     }
93
 }
93
 }

Loading…
Cancel
Save