mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-06-03 00:58:34 -04:00
fix: small style changes
This commit is contained in:
parent
97163cf6c9
commit
928490d31f
@ -60,12 +60,6 @@ Rectangle {
|
|||||||
text: qsTr("Stop")
|
text: qsTr("Stop")
|
||||||
}
|
}
|
||||||
|
|
||||||
CheckBox {
|
|
||||||
id: syncOpenFilesId
|
|
||||||
|
|
||||||
text: qsTr("Sync open files with model context")
|
|
||||||
}
|
|
||||||
|
|
||||||
QoAButton {
|
QoAButton {
|
||||||
id: attachFilesId
|
id: attachFilesId
|
||||||
|
|
||||||
@ -88,6 +82,15 @@ Rectangle {
|
|||||||
text: qsTr("Link files")
|
text: qsTr("Link files")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CheckBox {
|
||||||
|
id: syncOpenFilesId
|
||||||
|
|
||||||
|
text: qsTr("Sync open files")
|
||||||
|
|
||||||
|
ToolTip.visible: syncOpenFilesId.hovered
|
||||||
|
ToolTip.text: qsTr("Automatically synchronize currently opened files with the model context")
|
||||||
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
|
@ -290,8 +290,8 @@ void GeneralSettings::showUrlSelectionDialog(
|
|||||||
auto cancelButton = new QPushButton(TrConstants::CANCEL);
|
auto cancelButton = new QPushButton(TrConstants::CANCEL);
|
||||||
connect(cancelButton, &QPushButton::clicked, &dialog, &QDialog::reject);
|
connect(cancelButton, &QPushButton::clicked, &dialog, &QDialog::reject);
|
||||||
|
|
||||||
dialog.buttonLayout()->addWidget(okButton);
|
|
||||||
dialog.buttonLayout()->addWidget(cancelButton);
|
dialog.buttonLayout()->addWidget(cancelButton);
|
||||||
|
dialog.buttonLayout()->addWidget(okButton);
|
||||||
|
|
||||||
urlList->setFocus();
|
urlList->setFocus();
|
||||||
dialog.exec();
|
dialog.exec();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user