diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-04-08 13:39:45 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-04-08 13:39:45 +0200 |
commit | 161487ac69ed2813a408ab491302da97896d173b (patch) | |
tree | c7d967d6757dbd0bbf670a1fb3113dc7ecb6a158 | |
parent | 7299d7f1885314110c1805328ad60a58dc5be4ec (diff) | |
parent | 071b4b9c5f2b6039cb17aaa4f9876ba91d5ac923 (diff) | |
download | ayatana-indicator-sound-161487ac69ed2813a408ab491302da97896d173b.tar.gz ayatana-indicator-sound-161487ac69ed2813a408ab491302da97896d173b.tar.bz2 ayatana-indicator-sound-161487ac69ed2813a408ab491302da97896d173b.zip |
Merge branch 'tari01-pr/slider-precision'
Attributes GH PR #102: https://github.com/AyatanaIndicators/ayatana-indicator-sound/pull/102
-rw-r--r-- | src/sound-menu.vala | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/sound-menu.vala b/src/sound-menu.vala index 5cfc0a6..574e849 100644 --- a/src/sound-menu.vala +++ b/src/sound-menu.vala @@ -1,6 +1,6 @@ /* * Copyright 2013 Canonical Ltd. - * Copyright 2021-2022 Robert Tari + * Copyright 2021-2024 Robert Tari * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -478,6 +478,14 @@ public class SoundMenu: Object slider.set_attribute ("min-value", "d", min); slider.set_attribute ("max-value", "d", max); slider.set_attribute ("step", "d", step); + + bool bLomiri = AyatanaCommon.utils_is_lomiri (); + + if (!bLomiri) + { + slider.set_attribute ("digits", "y", 2); + } + if (sync_action) { slider.set_attribute ("x-ayatana-sync-action", "s", "indicator.volume-sync"); } |