Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
simple mode bug
  • Loading branch information
hymnly133 committed Aug 28, 2024
1 parent c95c114 commit 0d27b7e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions include/SUnit/sfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ void SFile::loadFromMyFI(const MyFileInfo& info, bool init)


gv->limitInisde = true;
qDebug() << &info;
qDebug() << lb;
qDebug() << name;
// qDebug() << &info;
// qDebug() << lb;
// qDebug() << name;
if(init) {
pixPath = "";
}
Expand Down
2 changes: 1 addition & 1 deletion include/SUnit/sunit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ void SUnit::load_json(QJsonObject rootObject)
indX = rootObject.value("indX").toInt();
indY = rootObject.value("indY").toInt();
alwaysShow = rootObject.value("alwaysShow").toBool();
simpleMode = rootObject.value("simpleMode").toBool();
setSimpleMode(rootObject.value("simpleMode").toBool());
deepColor = rootObject.value("dark").toBool();
showRect = rootObject.value("showRect").toBool();
showLight = rootObject.value("showLight").toBool();
Expand Down
2 changes: 1 addition & 1 deletion include/Setting/stylehelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ void StyleSettingWindow::IniAboutPage()
Icon贡献:L St4r 1207638671
使用:QXlsx,qBreakpad
使用:QXlsx,qBreakpad,OpenSSl
)"));
layout->addWidget(authorLabel);
// 添加许可证信息
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ int main(int argc, char *argv[])
bool bSupp = QSslSocket::supportsSsl();
QString buildVersion = QSslSocket::sslLibraryBuildVersionString();
QString version = QSslSocket::sslLibraryVersionString();
qDebug() << bSupp << buildVersion << version << endl;
qDebug() << bSupp << buildVersion << version;


static QSharedMemory *shareMem = new QSharedMemory("Sapphire"); //创建“SingleApp”的共享内存块
Expand Down

0 comments on commit 0d27b7e

Please sign in to comment.