Skip to content

Commit

Permalink
Bug fix 🔧
Browse files Browse the repository at this point in the history
Adding a missing line that's causing Pane to change size with window resize
  • Loading branch information
fairybow committed Feb 27, 2023
1 parent 90ebcec commit 0efe91c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Fernanda/source/Splitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ void Splitter::addWidgets(QVector<QWidget*> widgets)
};
}
else
{
setStretchFactor(i, 1);
setCollapsible(i, false);
}
}
}

Expand Down
4 changes: 2 additions & 2 deletions Fernanda/source/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

#pragma once

#define VER_FILEVERSION 0,26,0,56
#define VER_FILEVERSION_STR "v0.26.0-beta56"
#define VER_FILEVERSION 0,26,1,57
#define VER_FILEVERSION_STR "v0.26.1-beta57"
#define VER_PRODUCTVERSION VER_FILEVERSION
#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
#define VER_COMPANYNAME_STR "fairybow"
Expand Down

0 comments on commit 0efe91c

Please sign in to comment.