Fix persistant storage functions I broke?

This commit is contained in:
2019-04-10 15:07:28 -05:00
parent ce3a2b6649
commit c7ff2e6269
3 changed files with 12 additions and 8 deletions
@@ -96,12 +96,6 @@ namespace qController
});
}
void showToast(string message){
var toastConfig = new ToastConfig(message);
toastConfig.SetDuration(3000);
toastConfig.SetPosition(ToastPosition.Bottom);
UserDialogs.Instance.Toast(toastConfig);
}
async void Scan(object sender, EventArgs e){
bool workspacesFound = false;
@@ -129,5 +123,13 @@ namespace qController
}
}
void showToast(string message)
{
var toastConfig = new ToastConfig(message);
toastConfig.SetDuration(3000);
toastConfig.SetPosition(ToastPosition.Bottom);
UserDialogs.Instance.Toast(toastConfig);
}
}
}