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
28afa666
Commit
28afa666
authored
Jan 02, 2026
by
Erik Reider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed not being able to use inline replies in the Control Center
parent
722278f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
controlCenter.vala
src/controlCenter/controlCenter.vala
+1
-1
notificationGroup.vala
src/notificationGroup/notificationGroup.vala
+0
-1
No files found.
src/controlCenter/controlCenter.vala
View file @
28afa666
...
...
@@ -152,7 +152,7 @@ namespace SwayNotificationCenter {
}
private
bool
key_press_event_cb
(
uint
keyval
,
uint
keycode
,
Gdk
.
ModifierType
state
)
{
if
(
get_focus
()
is
Gtk
.
Text
)
{
if
(
get_focus
()
is
Gtk
.
Editable
)
{
return
false
;
}
switch
(
Gdk
.
keyval_name
(
keyval
))
{
...
...
src/notificationGroup/notificationGroup.vala
View file @
28afa666
...
...
@@ -62,7 +62,6 @@ namespace SwayNotificationCenter {
set_child
(
dismissible
);
Gtk
.
Overlay
overlay
=
new
Gtk
.
Overlay
();
overlay
.
set_can_focus
(
false
);
dismissible
.
child
=
overlay
;
Gtk
.
Box
box
=
new
Gtk
.
Box
(
Gtk
.
Orientation
.
VERTICAL
,
0
);
...
...
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