Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
Add lua and Arduino window titles
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlblom committed Mar 2, 2024
1 parent c99e95f commit c1e76fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BIOSBuddy/Windows/ArduinoWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:customControls="clr-namespace:BIOSBuddy.CustomControls"
mc:Ignorable="d"
Title="" Height="400" Width="Auto"
Title="Arduino code" Height="400" Width="Auto"
Loaded="ArduinoWindow_OnLoaded"
WindowStartupLocation="CenterScreen"
KeyDown="ArduinoWindow_OnKeyDown" KeyUp="ArduinoWindow_OnKeyUp" Icon="/Images/FlightPanels01.png">
Expand Down
2 changes: 1 addition & 1 deletion src/BIOSBuddy/Windows/LuaWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:customControls="clr-namespace:BIOSBuddy.CustomControls"
mc:Ignorable="d"
Title="" Height="400" Width="Auto"
Title="Lua code" Height="400" Width="Auto"
Loaded="LuaWindow_OnLoaded"
WindowStartupLocation="CenterScreen"
KeyDown="LuaWindow_OnKeyDown" KeyUp="LuaWindow_OnKeyUp" Icon="/Images/FlightPanels01.png">
Expand Down

0 comments on commit c1e76fe

Please sign in to comment.