Skip to content

Commit

Permalink
Fix duplicate example window titles (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
beyon committed Oct 30, 2023
1 parent a4b6ca6 commit 4727963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Examples/Component Examples/Examples.EnvApp/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ type Views =
type MainWindow() as this =
inherit HostWindow()
do
base.Title <- "Drawing App"
base.Title <- "Environment App"
base.Width <- 500.0
base.Height <- 500.0
this.Content <- Views.main ()
Expand Down
2 changes: 1 addition & 1 deletion src/Examples/Examples.DataGridPlayground/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ type Views =
type MainWindow() as this =
inherit HostWindow()
do
base.Title <- "Drawing App"
base.Title <- "DataGrid Playground"
base.Width <- 500.0
base.Height <- 500.0
this.Content <- Views.main ()
Expand Down

0 comments on commit 4727963

Please sign in to comment.