mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Finish converting function to property
This commit is contained in:
parent
baa9dfe110
commit
81a3faee7b
7 changed files with 9 additions and 9 deletions
|
@ -70,7 +70,7 @@ Popup {
|
|||
onCompleterNameChanged: {
|
||||
if (completerName) {
|
||||
if (completerName == "user")
|
||||
completer = TimelineManager.completerFor(completerName, room.roomId());
|
||||
completer = TimelineManager.completerFor(completerName, room.roomId);
|
||||
else
|
||||
completer = TimelineManager.completerFor(completerName);
|
||||
completer.setSearchString("");
|
||||
|
|
|
@ -33,8 +33,8 @@ Page {
|
|||
|
||||
Connections {
|
||||
onActiveTimelineChanged: {
|
||||
roomlist.positionViewAtIndex(Rooms.roomidToIndex(Rooms.currentRoom.roomId()), ListView.Contain);
|
||||
console.log("Test" + Rooms.currentRoom.roomId() + " " + Rooms.roomidToIndex(Rooms.currentRoom.roomId()));
|
||||
roomlist.positionViewAtIndex(Rooms.roomidToIndex(Rooms.currentRoom.roomId), ListView.Contain);
|
||||
console.log("Test" + Rooms.currentRoom.roomId + " " + Rooms.roomidToIndex(Rooms.currentRoom.roomId));
|
||||
}
|
||||
target: TimelineManager
|
||||
}
|
||||
|
|
|
@ -246,7 +246,7 @@ Item {
|
|||
|
||||
NhekoDropArea {
|
||||
anchors.fill: parent
|
||||
roomid: room ? room.roomId() : ""
|
||||
roomid: room ? room.roomId : ""
|
||||
}
|
||||
|
||||
Connections {
|
||||
|
|
|
@ -121,7 +121,7 @@ Rectangle {
|
|||
|
||||
Platform.MenuItem {
|
||||
text: qsTr("Leave room")
|
||||
onTriggered: TimelineManager.openLeaveRoomDialog(room.roomId())
|
||||
onTriggered: TimelineManager.openLeaveRoomDialog(room.roomId)
|
||||
}
|
||||
|
||||
Platform.MenuItem {
|
||||
|
|
|
@ -232,7 +232,7 @@ Item {
|
|||
body: formatted
|
||||
isOnlyEmoji: false
|
||||
isReply: d.isReply
|
||||
formatted: qsTr("%1 created and configured room: %2").arg(d.userName).arg(room.roomId())
|
||||
formatted: qsTr("%1 created and configured room: %2").arg(d.userName).arg(room.roomId)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -88,7 +88,7 @@ Popup {
|
|||
onClicked: {
|
||||
if (buttonLayout.validateMic()) {
|
||||
Settings.microphone = micCombo.currentText;
|
||||
CallManager.sendInvite(room.roomId(), CallType.VOICE);
|
||||
CallManager.sendInvite(room.roomId, CallType.VOICE);
|
||||
close();
|
||||
}
|
||||
}
|
||||
|
@ -102,7 +102,7 @@ Popup {
|
|||
if (buttonLayout.validateMic()) {
|
||||
Settings.microphone = micCombo.currentText;
|
||||
Settings.camera = cameraCombo.currentText;
|
||||
CallManager.sendInvite(room.roomId(), CallType.VIDEO);
|
||||
CallManager.sendInvite(room.roomId, CallType.VIDEO);
|
||||
close();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -136,7 +136,7 @@ Popup {
|
|||
Settings.screenSharePiP = pipCheckBox.checked;
|
||||
Settings.screenShareRemoteVideo = remoteVideoCheckBox.checked;
|
||||
Settings.screenShareHideCursor = hideCursorCheckBox.checked;
|
||||
CallManager.sendInvite(room.roomId(), CallType.SCREEN, windowCombo.currentIndex);
|
||||
CallManager.sendInvite(room.roomId, CallType.SCREEN, windowCombo.currentIndex);
|
||||
close();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue