~elementary-apps/pantheon-mail/install-desktops

« back to all changes in this revision

Viewing changes to src/client/application/geary-config.vala

  • Committer: RabbitBot
  • Author(s): Daniel Foré
  • Date: 2015-11-23 06:44:55 UTC
  • mfrom: (1869.4.1 remove-notify-prefs)
  • Revision ID: rabbitbot-20151123064455-vcpbywb56oify31z
Remove notification preferences

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    public const string AUTOSELECT_KEY = "autoselect";
19
19
    public const string DISPLAY_PREVIEW_KEY = "display-preview";
20
20
    public const string SPELL_CHECK_KEY = "spell-check";
21
 
    public const string PLAY_SOUNDS_KEY = "play-sounds";
22
 
    public const string SHOW_NOTIFICATIONS_KEY = "show-notifications";
23
21
    public const string STARTUP_NOTIFICATIONS_KEY = "startup-notifications";
24
22
    public const string ASK_OPEN_ATTACHMENT_KEY = "ask-open-attachment";
25
23
    public const string COMPOSE_AS_HTML_KEY = "compose-as-html";
79
77
        get { return settings.get_boolean(SPELL_CHECK_KEY); }
80
78
    }
81
79
 
82
 
    public bool play_sounds {
83
 
        get { return settings.get_boolean(PLAY_SOUNDS_KEY); }
84
 
    }
85
 
 
86
 
    public bool show_notifications {
87
 
        get { return settings.get_boolean(SHOW_NOTIFICATIONS_KEY); }
88
 
    }
89
 
 
90
80
    public bool startup_notifications {
91
81
        get { return settings.get_boolean(STARTUP_NOTIFICATIONS_KEY); }
92
82
        set { set_boolean(STARTUP_NOTIFICATIONS_KEY, value); }