From 7d6a6ee9b3798ce2a9a8ea4b38fa76b851f295c4 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Thu, 31 Aug 2023 15:54:38 +0200 Subject: [PATCH] Add information about user library flag --- src/model/onkostar_editor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model/onkostar_editor.rs b/src/model/onkostar_editor.rs index 5deccf4..615e1a0 100644 --- a/src/model/onkostar_editor.rs +++ b/src/model/onkostar_editor.rs @@ -107,7 +107,7 @@ impl OnkostarEditor { fn print_items(title: &str, list: &[impl Listable]) { print!("\n{} {}", list.len(), style(title).underlined()); println!( - " - Inhalte der Systembibliothek sind mit ({}) markiert", + " - Inhalte der Systembibliothek sind mit ({}), der Benutzerbibliothek mit (u) markiert", style("S").yellow() ); list.iter() @@ -131,7 +131,7 @@ impl OnkostarEditor { fn print_items_tree(&self, title: &str, list: &[impl Requires]) { print!("\n{} {}", list.len(), style(title).underlined()); println!( - " - Inhalte der Systembibliothek sind mit ({}) markiert", + " - Inhalte der Systembibliothek sind mit ({}), der Benutzerbibliothek mit (u) markiert", style("S").yellow() ); list.iter()