aboutsummaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorJoris2024-11-17 14:23:15 +0100
committerJoris2024-11-17 14:23:15 +0100
commit0e75ef4efe27535f04b8f5bfc13b2165c3343781 (patch)
treecdae490293d94b74f45e47c59b4aba57b7316c41 /src/gui
parent5f526ef14285b5fd2dc5892d6dd8b307981f743f (diff)
Fix clippy warnings1.3.0
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/calendar.rs2
-rw-r--r--src/gui/form/mod.rs2
-rw-r--r--src/gui/form/utils.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/calendar.rs b/src/gui/calendar.rs
index 5181116..5a91996 100644
--- a/src/gui/calendar.rs
+++ b/src/gui/calendar.rs
@@ -193,7 +193,7 @@ pub fn day_entry(
fn day_label(today: NaiveDate, date: NaiveDate) -> gtk::Label {
let label = gtk::Label::builder()
- .label(&format!(
+ .label(format!(
"{} {}",
date.day(),
if date == today || date.day() == 1 {
diff --git a/src/gui/form/mod.rs b/src/gui/form/mod.rs
index e05bb78..197bc14 100644
--- a/src/gui/form/mod.rs
+++ b/src/gui/form/mod.rs
@@ -186,7 +186,7 @@ pub async fn show(app: &App, target: Target) {
.collect::<Vec<&str>>(),
);
category_dropdown.set_margin_bottom(10);
- let selected = get_selected_category(&event, &app.categories).unwrap_or_else(|| "".to_string());
+ let selected = get_selected_category(&event, &app.categories).unwrap_or_default();
category_dropdown.set_selected(
dropdown_categories
.iter()
diff --git a/src/gui/form/utils.rs b/src/gui/form/utils.rs
index 5cf59e3..d0b4806 100644
--- a/src/gui/form/utils.rs
+++ b/src/gui/form/utils.rs
@@ -5,7 +5,7 @@ use chrono::NaiveTime;
use crate::model::time;
pub fn time_entry(time: Option<NaiveTime>) -> gtk::Entry {
- entry(&time.map(time::pprint).unwrap_or_else(|| "".to_string()))
+ entry(&time.map(time::pprint).unwrap_or_default())
}
pub fn entry(text: &str) -> gtk::Entry {