Skip to content

Commit 6659323

Browse files
authored
Merge pull request #1272 from Riksu9000/fix_indicator
Fix view option menu indicator covering the button
2 parents 8d1aaa7 + 57c7035 commit 6659323

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

core/Widgets/ReminderPicker/ReminderButton.vala

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public class Widgets.ReminderPicker.ReminderButton : Adw.Bin {
101101
child = indicator_grid,
102102
halign = END,
103103
valign = START,
104+
sensitive = false,
104105
};
105106

106107
var button = new Gtk.MenuButton () {

src/Views/Project/Project.vala

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public class Views.Project : Adw.Bin {
6262
child = indicator_grid,
6363
halign = END,
6464
valign = START,
65+
sensitive = false,
6566
};
6667

6768
var view_setting_button = new Gtk.MenuButton () {

src/Views/Scheduled/Scheduled.vala

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public class Views.Scheduled.Scheduled : Adw.Bin {
4343
child = indicator_grid,
4444
halign = END,
4545
valign = START,
46+
sensitive = false,
4647
};
4748

4849
var view_setting_button = new Gtk.MenuButton () {

src/Views/Today.vala

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ public class Views.Today : Adw.Bin {
6969
child = indicator_grid,
7070
halign = END,
7171
valign = START,
72+
sensitive = false,
7273
};
7374

7475
var view_setting_button = new Gtk.MenuButton () {

0 commit comments

Comments
 (0)