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
1f8e7a35
Verified
Commit
1f8e7a35
authored
Mar 31, 2026
by
Kirill Unitsaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widgets: clean up pending timeouts on destruction
parent
bcf5da3f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
0 deletions
+24
-0
bluetoothTile.vala
...trolCenter/widgets/quickSettings/tiles/bluetoothTile.vala
+6
-0
vpnTile.vala
src/controlCenter/widgets/quickSettings/tiles/vpnTile.vala
+6
-0
wifiTile.vala
src/controlCenter/widgets/quickSettings/tiles/wifiTile.vala
+6
-0
volume.vala
src/controlCenter/widgets/volume/volume.vala
+6
-0
No files found.
src/controlCenter/widgets/quickSettings/tiles/bluetoothTile.vala
View file @
1f8e7a35
...
...
@@ -5,6 +5,12 @@ namespace XimperShellNotificationCenter.Widgets {
private
static
string
?
settings_cmd
=
null
;
private
static
bool
settings_cmd_checked
=
false
;
~
BluetoothTile
()
{
if
(
sync_timeout
!=
0
)
{
Source
.
remove
(
sync_timeout
);
}
}
public
BluetoothTile
(
Json
.
Object
?
cfg
)
{
base
(
"bluetooth-active-symbolic"
,
_
(
"Bluetooth"
));
...
...
src/controlCenter/widgets/quickSettings/tiles/vpnTile.vala
View file @
1f8e7a35
...
...
@@ -16,6 +16,12 @@ namespace XimperShellNotificationCenter.Widgets {
private
bool
updating_submenu
=
false
;
private
bool
connecting
=
false
;
~
VpnTile
()
{
if
(
sync_timeout
!=
0
)
{
Source
.
remove
(
sync_timeout
);
}
}
public
VpnTile
(
Json
.
Object
?
cfg
)
{
base
(
"network-vpn-symbolic"
,
_
(
"VPN"
));
setup_arrow
();
...
...
src/controlCenter/widgets/quickSettings/tiles/wifiTile.vala
View file @
1f8e7a35
...
...
@@ -22,6 +22,12 @@ namespace XimperShellNotificationCenter.Widgets {
private
bool
connecting
=
false
;
private
bool
updating_submenu
=
false
;
~
WifiTile
()
{
if
(
sync_timeout
!=
0
)
{
Source
.
remove
(
sync_timeout
);
}
}
public
WifiTile
(
Json
.
Object
?
cfg
)
{
base
(
"network-wireless-offline-symbolic"
,
_
(
"Wi-Fi"
));
...
...
src/controlCenter/widgets/volume/volume.vala
View file @
1f8e7a35
...
...
@@ -33,6 +33,12 @@ namespace XimperShellNotificationCenter.Widgets {
default_device_changed
);
}
~
Volume
()
{
if
(
sink_rebuild_timeout
!=
0
)
{
Source
.
remove
(
sink_rebuild_timeout
);
}
}
public
Volume
(
string
suffix
)
{
base
(
suffix
);
...
...
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