forked from Silverfish/proton-bridge
Other: fix QML error with Qt 6.4 and a typo.
This commit is contained in:
@ -15,6 +15,7 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Proton Mail Bridge. If not, see <https://www.gnu.org/licenses/>.
|
// along with Proton Mail Bridge. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
import QtQml
|
import QtQml
|
||||||
|
|
||||||
QtObject {
|
QtObject {
|
||||||
@ -22,7 +23,7 @@ QtObject {
|
|||||||
property var prominent
|
property var prominent
|
||||||
|
|
||||||
// Primary
|
// Primary
|
||||||
property color primay_norm
|
property color primary_norm
|
||||||
|
|
||||||
// Interaction-norm
|
// Interaction-norm
|
||||||
property color interaction_norm
|
property color interaction_norm
|
||||||
|
|||||||
@ -30,7 +30,7 @@ QtObject {
|
|||||||
// https://doc.qt.io/qt-5/qtqml-documents-definetypes.html#inline-components
|
// https://doc.qt.io/qt-5/qtqml-documents-definetypes.html#inline-components
|
||||||
|
|
||||||
// component ColorScheme: QtObject {
|
// component ColorScheme: QtObject {
|
||||||
// property color primay_norm
|
// property color primary_norm
|
||||||
// ...
|
// ...
|
||||||
// }
|
// }
|
||||||
|
|
||||||
@ -40,7 +40,7 @@ QtObject {
|
|||||||
prominent: lightProminentStyle
|
prominent: lightProminentStyle
|
||||||
|
|
||||||
// Primary
|
// Primary
|
||||||
primay_norm: "#6D4AFF"
|
primary_norm: "#6D4AFF"
|
||||||
|
|
||||||
// Interaction-norm
|
// Interaction-norm
|
||||||
interaction_norm: "#6D4AFF"
|
interaction_norm: "#6D4AFF"
|
||||||
@ -115,7 +115,7 @@ QtObject {
|
|||||||
prominent: this
|
prominent: this
|
||||||
|
|
||||||
// Primary
|
// Primary
|
||||||
primay_norm: "#8A6EFF"
|
primary_norm: "#8A6EFF"
|
||||||
|
|
||||||
// Interaction-norm
|
// Interaction-norm
|
||||||
interaction_norm: "#6D4AFF"
|
interaction_norm: "#6D4AFF"
|
||||||
@ -190,7 +190,7 @@ QtObject {
|
|||||||
prominent: darkProminentStyle
|
prominent: darkProminentStyle
|
||||||
|
|
||||||
// Primary
|
// Primary
|
||||||
primay_norm: "#8A6EFF"
|
primary_norm: "#8A6EFF"
|
||||||
|
|
||||||
// Interaction-norm
|
// Interaction-norm
|
||||||
interaction_norm: "#6D4AFF"
|
interaction_norm: "#6D4AFF"
|
||||||
@ -265,7 +265,7 @@ QtObject {
|
|||||||
prominent: this
|
prominent: this
|
||||||
|
|
||||||
// Primary
|
// Primary
|
||||||
primay_norm: "#8A6EFF"
|
primary_norm: "#8A6EFF"
|
||||||
|
|
||||||
// Interaction-norm
|
// Interaction-norm
|
||||||
interaction_norm: "#6D4AFF"
|
interaction_norm: "#6D4AFF"
|
||||||
|
|||||||
Reference in New Issue
Block a user