Sorry this is a huge commit, this actually includes a ton of stuff. Text color is now readable, multiple accounts are supported alongside end-to-end encryption but no cross-signing yet :-) There's also a whole lot of other small changes, such as choosing the server you want to request a room directory from.
37 lines
591 B
QML
Executable file
37 lines
591 B
QML
Executable file
import QtQuick 2.10
|
|
import QtQuick.Controls 2.3
|
|
import QtGraphicalEffects 1.0
|
|
import QtQuick.Shapes 1.0
|
|
|
|
Rectangle {
|
|
color: "transparent"
|
|
|
|
ToolButton {
|
|
id: button
|
|
|
|
width: 32
|
|
height: 32
|
|
|
|
text: "X"
|
|
|
|
onClicked: stack.pop()
|
|
}
|
|
|
|
Text {
|
|
anchors.top: button.bottom
|
|
anchors.horizontalCenter: button.horizontalCenter
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
font.bold: true
|
|
|
|
text: "ESC"
|
|
|
|
color: myPalette.text
|
|
}
|
|
|
|
Shortcut {
|
|
sequence: "ESC"
|
|
onActivated: stack.pop()
|
|
}
|
|
}
|