fix
This commit is contained in:
parent
ae428b40f4
commit
bfffeceafa
|
|
@ -893,8 +893,8 @@ dependencies = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tarangam_dwij"
|
name = "tarangam"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cairo-rs",
|
"cairo-rs",
|
||||||
"gdk",
|
"gdk",
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ use gio::prelude::*;
|
||||||
use std::env::args;
|
use std::env::args;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use tarangam_dwij::util::Config;
|
use tarangam::util::Config;
|
||||||
|
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
|
|
@ -16,7 +16,7 @@ async fn main() {
|
||||||
|
|
||||||
let tmp_conf = Arc::clone(&conf);
|
let tmp_conf = Arc::clone(&conf);
|
||||||
app.connect_activate(move |app| {
|
app.connect_activate(move |app| {
|
||||||
tarangam_dwij::build_ui(app, &tmp_conf);
|
tarangam::build_ui(app, &tmp_conf);
|
||||||
});
|
});
|
||||||
|
|
||||||
app.run(&args().collect::<Vec<_>>());
|
app.run(&args().collect::<Vec<_>>());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue