Skip to content

Commit

Permalink
[CORRECTIVE] Fix enumeration editor minimum height.
Browse files Browse the repository at this point in the history
  • Loading branch information
hagantsa committed Mar 14, 2024
1 parent 268cb7f commit 426971a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void EnumerationEditorConstructorDelegate::repositionAndResizeEditor(QWidget* ed
QStyleOptionViewItem const& option, QModelIndex const& /*index*/) const
{
int enumerationCount = getAvailableItems().count();
int editorMinimumSize = 25 * (enumerationCount + 2);
int editorMinimumSize = qMax(25 * (enumerationCount + 2), 80);

int editorWidth = option.rect.right() - option.rect.left();
if (editorWidth < 150)
Expand Down
16 changes: 8 additions & 8 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
#ifndef VERSIONNO__H
#define VERSIONNO__H

#define VERSION_FULL 3.13.283.0
#define VERSION_FULL 3.13.287.0

#define VERSION_BASEYEAR 0
#define VERSION_DATE "2024-03-12"
#define VERSION_TIME "15:05:31"
#define VERSION_DATE "2024-03-14"
#define VERSION_TIME "09:26:07"

#define VERSION_MAJOR 3
#define VERSION_MINOR 13
#define VERSION_BUILDNO 283
#define VERSION_BUILDNO 287
#define VERSION_EXTEND 0

#define VERSION_FILE 3,13,283,0
#define VERSION_PRODUCT 3,13,283,0
#define VERSION_FILESTR "3,13,283,0"
#define VERSION_PRODUCTSTR "3,13,283,0"
#define VERSION_FILE 3,13,287,0
#define VERSION_PRODUCT 3,13,287,0
#define VERSION_FILESTR "3,13,287,0"
#define VERSION_PRODUCTSTR "3,13,287,0"

#endif

0 comments on commit 426971a

Please sign in to comment.