We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d63d72 commit 750840fCopy full SHA for 750840f
src/engraving/dom/textbase.cpp
@@ -1847,8 +1847,8 @@ void TextBase::layoutFrame(LayoutData* ldata) const
1847
}
1848
1849
if (rectangle()) {
1850
- // make sure width >= height
1851
- if (ldata->frame.height() > ldata->frame.width()) {
+ // make sure width >= height, if only one row (basically: make square for single characters)
+ if (ldata->frame.height() > ldata->frame.width() && ldata->rows() == 1) {
1852
double w = ldata->frame.height() - ldata->frame.width();
1853
ldata->frame.adjust(-w * .5, 0.0, w * .5, 0.0);
1854
0 commit comments