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
7a69695f
Commit
7a69695f
authored
May 29, 2022
by
Erik Reider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set default notification image visibility to "when-available". Fixes #70
parent
f9b75f4f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
config.json.in
src/config.json.in
+1
-1
configModel.vala
src/configModel/configModel.vala
+1
-1
configSchema.json
src/configSchema.json
+1
-1
No files found.
src/config.json.in
View file @
7a69695f
...
...
@@ -14,7 +14,7 @@
"control-center-height": 600,
"notification-window-width": 500,
"keyboard-shortcuts": true,
"image-visibility": "
always
",
"image-visibility": "
when-available
",
"transition-time": 200,
"hide-on-clear": false,
"hide-on-action": true,
...
...
src/configModel/configModel.vala
View file @
7a69695f
...
...
@@ -337,7 +337,7 @@ namespace SwayNotificationCenter {
public
ImageVisibility
image_visibility
{
get
;
set
;
default
=
ImageVisibility
.
ALWAYS
;
default
=
ImageVisibility
.
WHEN_AVAILABLE
;
}
/**
...
...
src/configSchema.json
View file @
7a69695f
...
...
@@ -84,7 +84,7 @@
"image-visibility"
:
{
"type"
:
"string"
,
"description"
:
"An explanation about the purpose of this instance."
,
"default"
:
"
always
"
,
"default"
:
"
when-available
"
,
"enum"
:
[
"always"
,
"when-available"
,
"never"
]
},
"transition-time"
:
{
...
...
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