Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/ContextMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,9 @@ bool addMenuItemForWindow(HMENU menu, HWND hwnd, unsigned int id, const BitmapHa
{
std::string title = WindowInfo::getTitle(hwnd);
constexpr size_t maxTitleLength = 30;
if (title.length() < 1) {
return true;
}
if (title.length() > maxTitleLength) {
const std::string_view ellipsis = "...";
title.resize(maxTitleLength - ellipsis.length());
Expand Down