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
a90528ee
Unverified
Commit
a90528ee
authored
Mar 05, 2025
by
giskard
Committed by
GitHub
Mar 05, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: no convert upper case for the first character (#512)
maybe non-ascii
parent
96eca864
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
notiModel.vala
src/notiModel/notiModel.vala
+2
-2
No files found.
src/notiModel/notiModel.vala
View file @
a90528ee
...
...
@@ -168,7 +168,7 @@ namespace SwayNotificationCenter {
// Set name_id
this
.
name_id
=
this
.
desktop_entry
??
this
.
app_name
??
""
;
// Set display_name
and make the first letter upper case
// Set display_name
string
?
display_name
=
this
.
desktop_entry
??
this
.
app_name
;
if
(
desktop_app_info
!=
null
)
{
display_name
=
desktop_app_info
.
get_display_name
();
...
...
@@ -176,7 +176,7 @@ namespace SwayNotificationCenter {
if
(
display_name
==
null
||
display_name
.
length
==
0
)
{
display_name
=
"Unknown"
;
}
this
.
display_name
=
display_name
.
splice
(
0
,
1
,
display_name
.
up
(
1
))
;
this
.
display_name
=
display_name
;
}
private
void
parse_hints
()
{
...
...
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