Commit b22f209 1 parent 77873d9 commit b22f209 Copy full SHA for b22f209
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
#![ cfg_attr( not( debug_assertions) , windows_subsystem = "windows" ) ]
2
2
3
- use afrim:: { run, Config as ClafricaConfig } ;
3
+ use afrim:: { run, Config as AfrimConfig } ;
4
4
use afrim_wish:: { Config as WishConfig , Wish } ;
5
5
use clap:: Parser ;
6
6
@@ -27,7 +27,7 @@ fn main() {
27
27
28
28
let wish = Wish :: from_config ( wish_conf) ;
29
29
30
- let clafrica_conf = ClafricaConfig :: from_file ( & args. config_file )
30
+ let afrim_conf = AfrimConfig :: from_file ( & args. config_file )
31
31
. map_err ( |err| {
32
32
Wish :: raise_error ( "Problem parsing config file" , & err) ;
33
33
} )
@@ -38,7 +38,7 @@ fn main() {
38
38
Wish :: kill ( ) ;
39
39
}
40
40
41
- if let Err ( err) = run ( clafrica_conf , wish) {
41
+ if let Err ( err) = run ( afrim_conf , wish) {
42
42
Wish :: raise_error ( "Application error" , & err) ;
43
43
}
44
44
}
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ impl ToolTip {
62
62
63
63
// Cursor
64
64
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! " ) ;
66
66
cursor_widget. style ( & self . themes [ "PHLabel" ] ) ;
67
67
cursor_widget. pack ( ) . fill ( PackFill :: X ) . layout ( ) ;
68
68
self . cursor_widget = Some ( cursor_widget) ;
You can’t perform that action at this time.
0 commit comments