Compare commits
2 Commits
b8986818b7
...
ed83a246ab
| Author | SHA1 | Date |
|---|---|---|
|
|
ed83a246ab | |
|
|
74a289a48a |
|
|
@ -11,7 +11,7 @@
|
||||||
{
|
{
|
||||||
<MudTooltip Text="Spieltag beginnen"
|
<MudTooltip Text="Spieltag beginnen"
|
||||||
Color="Color.Primary" Placement="Placement.Bottom" Arrow="true">
|
Color="Color.Primary" Placement="Placement.Bottom" Arrow="true">
|
||||||
<MudIconButton Icon="@Icons.Material.Filled.Start"
|
<MudIconButton Icon="@Icons.Material.Filled.Add"
|
||||||
Variant="Variant.Filled" Color="Color.Primary"
|
Variant="Variant.Filled" Color="Color.Primary"
|
||||||
Class="mr-5" OnClick="StartClick"/>
|
Class="mr-5" OnClick="StartClick"/>
|
||||||
</MudTooltip>
|
</MudTooltip>
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@
|
||||||
|
|
||||||
private async Task CloseDayClick(MouseEventArgs obj)
|
private async Task CloseDayClick(MouseEventArgs obj)
|
||||||
{
|
{
|
||||||
var result = await DialogService.ShowMessageBox("Spiel Abschließen?", "Spiel wirklich abbrechen?", "JA abschließen", "NEIN offen lassen", cancelText: "Abbrechen");
|
var result = await DialogService.ShowMessageBox("Spiel Abschließen", "Spiel beenden und abschließen oder nur schließen?", "Abschließen", "offen lassen", cancelText: "Abbrechen");
|
||||||
if (!result.HasValue)
|
if (!result.HasValue)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
{
|
{
|
||||||
case GameView.Throw:
|
case GameView.Throw:
|
||||||
<PanelToolbar>
|
<PanelToolbar>
|
||||||
@GetDayStr()
|
@* @GetDayStr() *@
|
||||||
@if (DayState.Value.Status != DayStatus.Started)
|
@if (DayState.Value.Status != DayStatus.Started)
|
||||||
{
|
{
|
||||||
<DayListMenu/>
|
<DayListMenu/>
|
||||||
|
|
@ -61,7 +61,7 @@
|
||||||
<!-- Scrollbarer Inhalt -->
|
<!-- Scrollbarer Inhalt -->
|
||||||
|
|
||||||
<MudContainer Class="mt-4">
|
<MudContainer Class="mt-4">
|
||||||
<p>@GetDayStr()</p>
|
@* <p>@GetDayStr()</p> *@
|
||||||
@switch (_gameView)
|
@switch (_gameView)
|
||||||
{
|
{
|
||||||
case GameView.Throw:
|
case GameView.Throw:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue