Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tuneit
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
tuneit
Commits
e38997b5
Commit
e38997b5
authored
Apr 14, 2025
by
Roman Alifanov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
a797319b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
setting.py
src/settings/setting/setting.py
+1
-0
service_dialog.py
src/settings/widgets/service_dialog.py
+1
-1
No files found.
src/settings/setting/setting.py
View file @
e38997b5
...
...
@@ -53,6 +53,7 @@ class Setting:
if
isinstance
(
self
.
map
,
list
)
and
'choice'
in
self
.
type
:
self
.
map
=
{
item
.
title
():
item
for
item
in
self
.
map
if
item
is
not
None
}
...
...
src/settings/widgets/service_dialog.py
View file @
e38997b5
...
...
@@ -20,7 +20,7 @@ class ServiceNotStartedDialog(Adw.AlertDialog):
self
.
add_response
(
"yes"
,
_
(
"Yes"
))
self
.
add_response
(
"no"
,
_
(
"No"
))
self
.
connect
(
'response'
,
on_response
)
self
.
connect
(
'response'
,
self
.
on_response
)
def
on_response
(
self
,
dialog
,
response
):
if
response
==
"yes"
:
...
...
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