Skip to content

Commit b22f209

Browse files
committed
chore: minor update
1 parent 77873d9 commit b22f209

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
22

3-
use afrim::{run, Config as ClafricaConfig};
3+
use afrim::{run, Config as AfrimConfig};
44
use afrim_wish::{Config as WishConfig, Wish};
55
use clap::Parser;
66

@@ -27,7 +27,7 @@ fn main() {
2727

2828
let wish = Wish::from_config(wish_conf);
2929

30-
let clafrica_conf = ClafricaConfig::from_file(&args.config_file)
30+
let afrim_conf = AfrimConfig::from_file(&args.config_file)
3131
.map_err(|err| {
3232
Wish::raise_error("Problem parsing config file", &err);
3333
})
@@ -38,7 +38,7 @@ fn main() {
3838
Wish::kill();
3939
}
4040

41-
if let Err(err) = run(clafrica_conf, wish) {
41+
if let Err(err) = run(afrim_conf, wish) {
4242
Wish::raise_error("Application error", &err);
4343
}
4444
}

src/window/tooltip.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl ToolTip {
6262

6363
// Cursor
6464
let cursor_widget = rstk::make_label(window);
65-
cursor_widget.text("Type _exit_ to end the clafrica");
65+
cursor_widget.text("Afrim is ready for input!");
6666
cursor_widget.style(&self.themes["PHLabel"]);
6767
cursor_widget.pack().fill(PackFill::X).layout();
6868
self.cursor_widget = Some(cursor_widget);

0 commit comments

Comments
 (0)