Skip to content

Commit

Permalink
bugfix: Zeitanzeige 0 - 10 Uhr
Browse files Browse the repository at this point in the history
  • Loading branch information
bietiekay committed Jan 15, 2022
1 parent 0efcea9 commit b1aa5a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DisplayForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,9 @@ public String GenerateCurrentTimeString()
}

if (even_or_uneven)
return "¥" + DateTime.Now.ToString("H:mm");
return "¥" + DateTime.Now.ToString("HH:mm");
else
return "¥" + DateTime.Now.ToString("H¦mm");
return "¥" + DateTime.Now.ToString("HH¦mm");
}

public DateTime GetNearestTimeInTheFutureForMinute(int MinuteInput)
Expand Down
6 changes: 3 additions & 3 deletions LST-Busline.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<Copyright>(C) Daniel Kirstenpfad / bietiekay 2022</Copyright>
<PackageIcon>LST-Logo.png</PackageIcon>
<DebugType>embedded</DebugType>
<AssemblyVersion>1.3</AssemblyVersion>
<FileVersion>1.3</FileVersion>
<Version>1.3</Version>
<AssemblyVersion>1.4</AssemblyVersion>
<FileVersion>1.4</FileVersion>
<Version>1.4</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit b1aa5a6

Please sign in to comment.