Skip to content

Commit

Permalink
Merge pull request #5 from AlexanderARodin/release
Browse files Browse the repository at this point in the history
window title test
  • Loading branch information
webraa authored Dec 31, 2023
2 parents 02f8efd + 89e9c95 commit 5dce7bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/base_domik_view.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const VERS: &str = "v0.0.2";
const VERS: &str = "v0.0.3";

use crate::raadbg::log;

Expand Down
2 changes: 1 addition & 1 deletion src/root_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl eframe::App for RootApp {
self.showBanner( ui );
});

egui::Window::new("base_domik_view").show( ctx, |ui| {
egui::Window::new(self.base_domik_view.title.clone()).show( ctx, |ui| {
self.base_domik_view.updateUI( ui, &mut self.example_text );
});

Expand Down

0 comments on commit 5dce7bc

Please sign in to comment.