1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 09:17:45 +00:00

ClipboardHistory: Use config file to set number of history items

The number of items in history was hardcoded to 20 earlier, now
we try to load this value from a config file. The default if none
is available is still 20.
This commit is contained in:
Mustafa Quraish 2021-08-26 22:24:09 -04:00 committed by Brian Gianforcaro
parent b9979e9a59
commit b1a3bb638b
4 changed files with 14 additions and 2 deletions

View file

@ -10,4 +10,4 @@ set(SOURCES
)
serenity_app(ClipboardHistory.Applet ICON edit-copy)
target_link_libraries(ClipboardHistory.Applet LibGUI LibCore LibGfx)
target_link_libraries(ClipboardHistory.Applet LibGUI LibCore LibGfx LibConfig)