~teejee2008/timeshift/trunk

« back to all changes in this revision

Viewing changes to src/Gtk/ScheduleBox.vala

  • Committer: Tony George
  • Date: 2017-01-08 05:43:45 UTC
  • Revision ID: tony.george.kol@gmail.com-20170108054345-mrw7f7kuwgc4d3kh
Uninstall Timeshift BTRFS if installed; Renamed application from 'Timeshift RSYNC' to 'Timeshift'

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
                        App.count_boot = (int) spin_b.get_value();
139
139
                });
140
140
 
 
141
                // buffer
 
142
                var label = new Gtk.Label("");
 
143
                label.vexpand = true;
 
144
                add(label);
 
145
                
141
146
                // crontab 
142
147
 
143
148
                var chk_cron = add_checkbox(this, "Stop cron daemon from sending emails for scheduled jobs");
144
149
                chk_cron.set_tooltip_text(_("The cron service sends the output of scheduled tasks as an email to the current user. Select this option to suppress the emails for cron tasks created by Timeshift."));
 
150
                //chk_cron.margin_bottom = 12;
145
151
                
146
152
                chk_cron.active = App.stop_cron_emails;
147
153
                chk_cron.toggled.connect(()=>{
148
154
                        App.stop_cron_emails = chk_cron.active;
149
155
                });
150
156
 
151
 
                // buffer
152
 
                var label = new Gtk.Label("");
153
 
                label.vexpand = true;
154
 
                add(label);
155
 
 
156
157
                // scrolled
157
158
                var scrolled = new ScrolledWindow(null, null);
158
159
                scrolled.set_shadow_type (ShadowType.ETCHED_IN);