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
commit 0b051a5e15
Notes: sideshowbarker 2024-07-19 02:54:21 +09:00
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 };
};