mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 07:41:01 +00:00
Base: rename audio volume icons with descriptive names
This commit is contained in:
parent
4916cfa3a3
commit
0e172f8ed7
Notes:
sideshowbarker
2024-07-19 17:33:01 +09:00
Author: https://github.com/benit8 🔰
Commit: 0e172f8ed7
Pull-request: https://github.com/SerenityOS/serenity/pull/2845
Reviewed-by: https://github.com/awesomekling
5 changed files with 4 additions and 4 deletions
|
@ -52,10 +52,10 @@ public:
|
|||
update();
|
||||
};
|
||||
|
||||
m_volume_level_bitmaps.append({66, Gfx::Bitmap::load_from_file("/res/icons/audio-2.png")});
|
||||
m_volume_level_bitmaps.append({33, Gfx::Bitmap::load_from_file("/res/icons/audio-1.png")});
|
||||
m_volume_level_bitmaps.append({1, Gfx::Bitmap::load_from_file("/res/icons/audio-0.png")});
|
||||
m_volume_level_bitmaps.append({0, Gfx::Bitmap::load_from_file("/res/icons/audio-muted.png")});
|
||||
m_volume_level_bitmaps.append({66, Gfx::Bitmap::load_from_file("/res/icons/audio-volume-high.png")});
|
||||
m_volume_level_bitmaps.append({33, Gfx::Bitmap::load_from_file("/res/icons/audio-volume-medium.png")});
|
||||
m_volume_level_bitmaps.append({1, Gfx::Bitmap::load_from_file("/res/icons/audio-volume-low.png")});
|
||||
m_volume_level_bitmaps.append({0, Gfx::Bitmap::load_from_file("/res/icons/audio-volume-muted.png")});
|
||||
}
|
||||
|
||||
virtual ~AudioWidget() override {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue