mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-20 06:29:13 +00:00
* packages.config:
* packages.config: * qController.iOS.csproj: * qController.Droid.csproj: * qController.csproj: Update QControlKit * QBrowserPage.xaml.cs: * QCueViewModel.cs: * QWorkspacePage.xaml.cs: * QBrowserViewModel.cs: Logging cleanup
This commit is contained in:
@@ -68,7 +68,6 @@ namespace qController.Pages
|
||||
{
|
||||
if (resp.Ok)
|
||||
{
|
||||
Console.WriteLine($"Passcode is null: {resp.Value == null}");
|
||||
await Navigation.PushAsync(new QWorkspacePage(selectedWorkspace, resp.Value));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -60,8 +60,7 @@ namespace qController
|
||||
|
||||
private void ConnectedWorkspace_WorkspaceConnectionError(object source, QWorkspaceConnectionErrorArgs connectionErrorArgs)
|
||||
{
|
||||
System.Console.WriteLine("WorkspaceConnectionError Called");
|
||||
if (connectionErrorArgs.status.Equals("badpass"))
|
||||
if (connectionErrorArgs.status.Equals(QConnectionStatus.BadPass))
|
||||
{
|
||||
UserDialogs.Instance.Prompt(new PromptConfig
|
||||
{
|
||||
@@ -106,10 +105,10 @@ namespace qController
|
||||
}
|
||||
else
|
||||
{
|
||||
//Setup and "empty" cue for when no cue is selected
|
||||
//Setup an "empty" cue for when no cue is selected
|
||||
QCue emptyCue = new QCue();
|
||||
emptyCue.workspace = connectedWorkspace;
|
||||
emptyCue.type = "Memo";
|
||||
emptyCue.type = QCueType.Memo;
|
||||
emptyCue.listName = "No Cue Selected";
|
||||
|
||||
selectedCueFrame.BindingContext = new QCueViewModel(emptyCue, false);
|
||||
|
||||
Reference in New Issue
Block a user