diff options
author | lakoliu <99976966+lakoliu@users.noreply.github.com> | 2022-06-12 18:42:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-12 18:42:38 -0700 |
commit | a64af13fb2f6837244359e6a18efb0e24fb56970 (patch) | |
tree | bfab44f00f603268ba8371c841a03357f9cfc889 /src/ui | |
parent | f19023ce3917efde04ff37fb77c00f6bd56b2c13 (diff) | |
parent | c8c681ec835dd2bd84215916a85b3ef108be716c (diff) | |
download | Furtherance-a64af13fb2f6837244359e6a18efb0e24fb56970.tar.zst |
Merge pull request #71 from flxzt/translatable-export-options
fix: CSV export options translatable
Diffstat (limited to 'src/ui')
-rwxr-xr-x | src/ui/window.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ui/window.rs b/src/ui/window.rs index 5670696..1371eb1 100755 --- a/src/ui/window.rs +++ b/src/ui/window.rs @@ -40,8 +40,6 @@ use crate::ui::FurHistoryBox; use crate::FurtheranceApplication; mod imp { - use crate::database::{SortOrder, TaskSort}; - use super::*; #[derive(Debug, Default, CompositeTemplate)] @@ -87,8 +85,6 @@ mod imp { fn class_init(klass: &mut Self::Class) { FurHistoryBox::static_type(); - TaskSort::static_type(); - SortOrder::static_type(); Self::bind_template(klass); } @@ -916,7 +912,6 @@ impl FurtheranceWindow { let imp = imp::FurtheranceWindow::from_instance(self); imp.win_box.set_valign(align); } - } impl Default for FurtheranceWindow { |