From 50f3a1082361c5c98b551adae9dca7003ed4022f Mon Sep 17 00:00:00 2001 From: Olaf Wintermann Date: Sun, 26 Jul 2026 20:43:06 +0200 Subject: [PATCH] remove unused imports --- application/note/src/window.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/note/src/window.rs b/application/note/src/window.rs index 3c01d76..db2bf66 100644 --- a/application/note/src/window.rs +++ b/application/note/src/window.rs @@ -28,12 +28,12 @@ use std::any::Any; use backend::backend::{BackendHandle, BroadcastMessage, NoteId}; -use ui_rs::{action, button, grid, hbox, label, sidebar, sourcelist, tableview, tabview, textarea, textfield, ui_actions, UiModel}; +use ui_rs::{action, button, grid, hbox, label, sourcelist, tableview, tabview, textarea, textfield, ui_actions, UiModel}; use ui_rs::ui::*; use crate::{App, AppStates}; use entity::collection::{Model as Collection, Node}; use crate::newnotebook::new_notebook_dialog; -use crate::notebook::{notelist_getvalue, NoteItem, Notebook, NotebookItem}; +use crate::notebook::{notelist_getvalue, Notebook, NotebookItem}; #[derive(UiModel)] pub struct MainWindow { -- 2.52.0