Rebrand files names Spectral -> NeoChat
This commit is contained in:
13
imports/NeoChat/Component/AutoMouseArea.qml
Normal file
13
imports/NeoChat/Component/AutoMouseArea.qml
Normal file
@@ -0,0 +1,13 @@
|
||||
import QtQuick 2.12
|
||||
|
||||
import NeoChat.Setting 0.1
|
||||
|
||||
MouseArea {
|
||||
signal primaryClicked()
|
||||
signal secondaryClicked()
|
||||
|
||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||
|
||||
onClicked: mouse.button == Qt.RightButton ? secondaryClicked() : primaryClicked()
|
||||
onPressAndHold: secondaryClicked()
|
||||
}
|
||||
Reference in New Issue
Block a user