Commit 1f22285d authored by Bilal Elmoussaoui's avatar Bilal Elmoussaoui

window: set the icon name

parent fe146389
......@@ -5,7 +5,7 @@ use std::rc::Rc;
use super::pages::{ImagePageWidget, WelcomePageWidget};
use super::paginator::PaginatorWidget;
use crate::config::PROFILE;
use crate::config::{APP_ID, PROFILE};
pub struct Window {
pub widget: libhandy::ApplicationWindow,
......@@ -35,6 +35,7 @@ impl Window {
fn init(&mut self) {
self.widget.set_default_size(920, 640);
self.widget.set_icon_name(Some(APP_ID));
// Devel Profile
if PROFILE == "Devel" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment