Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/starfield' into qt6-category
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Sep 16, 2023
2 parents a5fff7b + dff79a6 commit fc5182b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/pluginlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,8 @@ void PluginList::setEnabled(const QModelIndexList& indices, bool enabled)
{
QStringList dirty;
for (auto& idx : indices) {
if (m_ESPs[idx.row()].forceEnabled || m_ESPs[idx.row()].forceDisabled)
continue;
if (m_ESPs[idx.row()].enabled != enabled) {
m_ESPs[idx.row()].enabled = enabled;
dirty.append(m_ESPs[idx.row()].name);
Expand All @@ -437,6 +439,8 @@ void PluginList::setEnabledAll(bool enabled)
{
QStringList dirty;
for (ESPInfo& info : m_ESPs) {
if (info.forceEnabled || info.forceDisabled)
continue;
if (info.enabled != enabled) {
info.enabled = enabled;
dirty.append(info.name);
Expand Down
2 changes: 1 addition & 1 deletion src/version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Otherwise, if letters are used in VER_FILEVERSION_STR, uses the full MOBase::VersionInfo parser
// Otherwise, uses the numbers from VER_FILEVERSION and sets the release type as pre-alpha
#define VER_FILEVERSION 2,5,0
#define VER_FILEVERSION_STR "2.5.0-beta2\0"
#define VER_FILEVERSION_STR "2.5.0-beta7\0"

VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand Down

0 comments on commit fc5182b

Please sign in to comment.