about summary refs log tree commit diff
path: root/src/ui/history_box.rs
diff options
context:
space:
mode:
authorRicky Kresslein <ricky@kressle.in>2022-02-20 19:19:45 +0100
committerRicky Kresslein <ricky@kressle.in>2022-02-20 19:19:45 +0100
commit2a8e1c75863bc84c55eadcff1f3adb42d409d180 (patch)
tree8f5bb0f816a5ecffa25a01ab15ee84bc717cf99f /src/ui/history_box.rs
parent379561117862952d567bfdbf0700b5c7f470a1a8 (diff)
downloadFurtherance-2a8e1c75863bc84c55eadcff1f3adb42d409d180.tar.zst
- Distinctive development mode
Diffstat (limited to 'src/ui/history_box.rs')
-rw-r--r--src/ui/history_box.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/history_box.rs b/src/ui/history_box.rs
index 4de6dce..459c751 100644
--- a/src/ui/history_box.rs
+++ b/src/ui/history_box.rs
@@ -22,6 +22,7 @@ use glib::subclass;
 use crate::ui::FurTasksPage;
 use crate::FurtheranceApplication;
 use crate::database;
+use crate::config;
 
 enum View {
     Loading,
@@ -92,6 +93,13 @@ impl FurHistoryBox {
         } else {
             self.set_view(View::Empty);
         }
+
+        // Change "empty" page icon for development mode
+        let imp = imp::FurHistoryBox::from_instance(self);
+        if config::PROFILE == "development" {
+            imp.welcome_page.set_icon_name(Some("com.lakoliu.Furtherance.Devel"));
+        }
+
     }
 
     fn set_view(&self, view: View) {