- Rename ButtonLayout module to just Buttons - Rename ButtonLayout into AutoDirectionLayout and move it to Base, it's useful not just for buttons - Rename OtherButton into GroupButton, which is now the base of all other Buttons buttons - Add generic (Positive|Middle|Negative)Button components, which are now the base for (Apply|Cancel)Button
7 lines
115 B
QML
7 lines
115 B
QML
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
NegativeButton {
|
|
text: qsTr("Cancel")
|
|
icon.name: "cancel"
|
|
}
|