summaryrefslogtreecommitdiff
path: root/schist_desktop_gui/src/gui/components
diff options
context:
space:
mode:
Diffstat (limited to 'schist_desktop_gui/src/gui/components')
-rw-r--r--schist_desktop_gui/src/gui/components/buckets_view.rs10
1 files changed, 1 insertions, 9 deletions
diff --git a/schist_desktop_gui/src/gui/components/buckets_view.rs b/schist_desktop_gui/src/gui/components/buckets_view.rs
index 8cbaa22..2b3258a 100644
--- a/schist_desktop_gui/src/gui/components/buckets_view.rs
+++ b/schist_desktop_gui/src/gui/components/buckets_view.rs
@@ -144,15 +144,7 @@ impl<'a> Component<'a, Message, Action> for BucketsView {
InsertOptionResult::InsertedOptions => {
self.navigation.replace_first(
|bucket_navigation_entry| {
- bucket_navigation_entry.is_group_and(|g| {
- println!(
- "{} = {}? {}",
- g.group,
- group.as_str(),
- g.group.eq(group.as_str())
- );
- g.group.eq(group.as_str())
- })
+ bucket_navigation_entry.is_group_and(|g| g.group.eq(group.as_str()))
},
&vec![BucketNavigationEntry::from_group_open(&group)],
);