mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-06 07:53:47 +00:00
fe8bd257d1
- No more UDP - Lots of random refactoring as well
15 lines
294 B
C#
15 lines
294 B
C#
using System;
|
|
using Acr.UserDialogs;
|
|
|
|
namespace qController.Dialogs
|
|
{
|
|
public class NoWorkspacesConfig : ConfirmConfig
|
|
{
|
|
public NoWorkspacesConfig()
|
|
{
|
|
Message = "QLab doesn't have any workspaces open?";
|
|
OkText = "Disconnect";
|
|
}
|
|
}
|
|
}
|