Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-shell-notification-center
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-shell-notification-center
Commits
d4153280
Commit
d4153280
authored
Jul 11, 2025
by
Erik Reider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed alt action shortcut not actually activating the button
parent
5158f41e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
notification.vala
src/notification/notification.vala
+9
-3
No files found.
src/notification/notification.vala
View file @
d4153280
namespace
SwayNotificationCenter
{
public
class
NotificationCloseButton
:
Adw
.
Bin
{
Gtk
.
Revealer
revealer
;
Gtk
.
Button
button
;
...
...
@@ -465,9 +464,16 @@ namespace SwayNotificationCenter {
unowned
Gtk
.
Widget
?
button
=
null
;
int
i
=
0
;
foreach
(
unowned
Gtk
.
Widget
child
in
base_box
.
get_children
())
{
for
(
unowned
Gtk
.
Widget
?
child
=
alt_actions_box
.
get_first_child
();
child
!=
null
;
child
=
child
.
get_next_sibling
())
{
if
(!(
child
is
Gtk
.
FlowBoxChild
))
{
continue
;
}
unowned
Gtk
.
FlowBoxChild
f_child
=
(
Gtk
.
FlowBoxChild
)
child
;
if
(
i
==
index
)
{
button
=
child
;
button
=
f_child
.
child
;
break
;
}
i
++;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment