mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 01:22:12 +02:00
Some window titles didn't fit on the taskbar buttons, so I needed a way to collapse the remaining part of the text into "..."
8 lines
64 B
C
8 lines
64 B
C
#pragma once
|
|
|
|
enum class TextElision {
|
|
None,
|
|
Right,
|
|
};
|
|
|