Fix for the old dependency code in the CI
All checks were successful
Build ptprnt / build (push) Successful in 2m31s
All checks were successful
Build ptprnt / build (push) Successful in 2m31s
This commit is contained in:
@@ -103,7 +103,10 @@ bool Label::create(const std::string& labelText) {
|
||||
case HAlignPosition::JUSTIFY:
|
||||
pango_layout_set_alignment(mPangoLyt, PANGO_ALIGN_LEFT); // not sure if needed
|
||||
pango_layout_set_justify(mPangoLyt, true);
|
||||
// only enabled in pango 1.50 and greater
|
||||
#if PANGO_VERSION_MAJOR >= 1 && PANGO_VERSION_MINOR >= 50
|
||||
pango_layout_set_justify_last_line(mPangoLyt, true);
|
||||
#endif
|
||||
break;
|
||||
case HAlignPosition::CENTER:
|
||||
[[fallthrough]];
|
||||
|
Reference in New Issue
Block a user