ClipboardHistory: Use the "edit-copy" icon instead of a colorized one

This commit is contained in:
Andreas Kling 2021-04-04 09:53:41 +02:00
commit 721572410e
Notes: sideshowbarker 2024-07-18 20:50:32 +09:00
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -58,7 +58,7 @@ int main(int argc, char* argv[])
return 1;
}
auto app_icon = GUI::Icon::default_icon("clipboard");
auto app_icon = GUI::Icon::default_icon("edit-copy");
auto main_window = GUI::Window::construct();
main_window->set_title("Clipboard history");
@ -94,7 +94,7 @@ int main(int argc, char* argv[])
applet_window->set_title("ClipboardHistory");
applet_window->set_window_type(GUI::WindowType::MenuApplet);
auto& icon = applet_window->set_main_widget<GUI::ImageWidget>();
icon.load_from_file("/res/icons/16x16/clipboard.png");
icon.load_from_file("/res/icons/16x16/edit-copy.png");
icon.set_fill_with_background_color(true);
icon.on_click = [&main_window = *main_window] {
main_window.show();