1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

ClipboardHistory: Show the size (in bytes) of each remembered clipping

This commit is contained in:
Andreas Kling 2020-09-05 17:02:25 +02:00
parent b8d73e259c
commit 0b051a5e15
2 changed files with 7 additions and 0 deletions

View file

@ -37,6 +37,7 @@ public:
enum Column {
Data,
Type,
Size,
__Count
};
@ -55,3 +56,4 @@ private:
Vector<GUI::Clipboard::DataAndType> m_history_items;
size_t m_history_limit { 20 };
};