ladybird/SharedGraphics/TextElision.h
Andreas Kling 4533539e8a Painter: Add text elision support (only right-hand side supported.)
Some window titles didn't fit on the taskbar buttons, so I needed a way
to collapse the remaining part of the text into "..."
2019-04-04 15:19:04 +02:00

8 lines
64 B
C

#pragma once
enum class TextElision {
None,
Right,
};