Move More Dialog Configs to their own file

This commit is contained in:
2020-06-06 13:03:58 -05:00
parent 90fdec8d46
commit 552114de58
5 changed files with 73 additions and 51 deletions
@@ -5,10 +5,11 @@ namespace qController.Dialogs
{
public class NoWorkspacesConfig : ConfirmConfig
{
public NoWorkspacesConfig()
public NoWorkspacesConfig(Action<bool> action)
{
Message = "QLab doesn't have any workspaces open?";
OkText = "Disconnect";
OnAction = action;
}
}
}