Skip to content

Commit

Permalink
Current version of Psi+ is 1.5.1940
Browse files Browse the repository at this point in the history
It is based on:
* psi: d3389574
* plugins: 7a65467
* psimedia: 478567e
* resources: e32ef4b
  • Loading branch information
tehnick committed Jun 2, 2024
1 parent a7beb54 commit b296942
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/options/opt_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ QWidget *OptionsTabTree::widget()
layout->addWidget(lb);

PsiOptionsEditor *poe = new PsiOptionsEditor(w);
poe->layout()->setContentsMargins(0, 0, 0, 0);
layout->addWidget(poe);
poe->show();

Expand Down
10 changes: 7 additions & 3 deletions src/psioptionseditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ PsiOptionsEditor::PsiOptionsEditor(QWidget *parent) : QWidget(parent)
tpm_->setSourceModel(tm_);

QVBoxLayout *layout = new QVBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);

QHBoxLayout *filterLayout = new QHBoxLayout;
le_filter = new QLineEdit(this);
filterLayout->setSpacing(5);
le_filter = new QLineEdit(this);
le_filter->setProperty("isOption", false);
le_filter->setToolTip(tr("Options filter"));
lb_filter = new QLabel(tr("Filter"), this);
Expand Down Expand Up @@ -352,7 +352,11 @@ void PsiOptionsEditor::resetit()
}
}

void PsiOptionsEditor::detach() { new PsiOptionsEditor(); }
void PsiOptionsEditor::detach()
{
auto dlg = new PsiOptionsEditor();
dlg->resize(pointToPixel(800), pointToPixel(600));
}

void PsiOptionsEditor::bringToFront() { ::bringToFront(this, true); }

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.1939 (2024-05-31, 78430066)
1.5.1940 (2024-06-02, d3389574)

0 comments on commit b296942

Please sign in to comment.