Skip to content

Commit

Permalink
feat: use safebooru instead of danbooru as default source
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed Dec 14, 2022
1 parent 5d3f7cc commit 62299a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/gui-qml/src/components/settings/Settings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Item {
}
property Setting activeSource: Setting {
key: "activeSource"
def: "danbooru.donmai.us"
def: "safebooru.org"
obj: root.obj
}

Expand Down
4 changes: 2 additions & 2 deletions src/gui/src/settings/start-window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ StartWindow::StartWindow(Profile *profile, QWidget *parent)
// Sources
QStringList sources = profile->getSites().keys();
ui->comboSource->addItems(sources);
if (sources.contains("danbooru.donmai.us")) {
ui->comboSource->setCurrentText("danbooru.donmai.us");
if (sources.contains("safebooru.org")) {
ui->comboSource->setCurrentText("safebooru.org");
}

// Default values
Expand Down

0 comments on commit 62299a5

Please sign in to comment.