MCPcopy Create free account
hub / github.com/IChooseYou/Reclass / elideLeft

Function elideLeft

src/controller.cpp:38–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38static QString elideLeft(const QString& s, int max) {
39 if (s.size() <= max) return s;
40 if (max <= 1) return QStringLiteral("\u2026").left(max);
41 return QStringLiteral("\u2026") + s.right(max - 1);
42}
43
44static QString crumbFor(const rcx::NodeTree& t, uint64_t nodeId) {
45 QStringList parts;

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected