| Summary: | Change volume via mouse wheel (scrolling) on kmix symbol in smaller steps (e.g. 1% instead 7%) | ||
|---|---|---|---|
| Product: | [Applications] kmix | Reporter: | stu109382 |
| Component: | KMix Panel Docking | Assignee: | Christian Esken <esken> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | wishlist | CC: | samrog131, schwimmerdo |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Mint (Ubuntu based) | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
stu109382
2016-11-22 15:47:06 UTC
A possible dublicate of https://bugs.kde.org/show_bug.cgi?id=189995 With the KMix 16.08.3 (KF5) it is possible to set the step by 1) Stop kmix: kquitapp5 kmix 2) Set the step to 1%: kwriteconfig5 --file kmixrc --group Global --key VolumePercentageStep 1.0 3) Restart the kmix with the command: kmix Older from the KDE Forums - with the KDE4: https://forum.kde.org/viewtopic.php?f=19&t=92925 Same kind of with the plasma-pa: https://www.reddit.com/r/kde/comments/3kmpe5/how_do_i_change_the_volume_step_percentage_with/ It seems I'm not using KMix but the kde5 plasmoid volume applet.
So, the last link you provided explains a working solution for me:
in /usr/share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/ListItemBase.qml
in the method increaseVolume() and decreaseVolume() change
var step = slider.maximumValue / 15;
to
var step = slider.maximumValue / 100;
This will change the value in 1% steps. Logout and login again to have changes take effect.
If I wanted to make this configurable in the UI of the plasmoid's settings, where would I do this and is this easy or not? I think such an option would be useful.
Anyway, this ticket can be closed.
Thx.
|