Slightly increase the row height in the selection popup (to see underscores).

This commit is contained in:
Jean-Paul Chaput 2023-08-07 23:05:12 +02:00
parent 258bd053c4
commit cd72c17cf2
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ namespace Hurricane {
setMouseTracking( true );
setFocusPolicy ( Qt::StrongFocus );
_rowHeight = QFontMetrics( Graphics::getFixedFont() ).height() + 2;
_rowHeight = QFontMetrics( Graphics::getFixedFont() ).height() + 4;
_charWidth = QFontMetrics( Graphics::getFixedFont() ).averageCharWidth() + 1;
_model = new SelectionPopupModel ( this );
setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Preferred );