Skip to content

Commit

Permalink
TimelineItem.qml: remove extra logging used for #355/#356
Browse files Browse the repository at this point in the history
  • Loading branch information
KitsuneRal committed May 29, 2018
1 parent 67ee073 commit 593fa93
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions client/qml/TimelineItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,7 @@ Item {
y + message.height - 1 > view.contentY &&
y + message.height - 1 < view.contentY + view.height

onShownChanged:
{
console.log("onShownChanged(" + eventId + "," + shown + "): y=" + y + ", view.contentY=" + view.contentY + ", view.height=" + view.height)
controller.onMessageShownChanged(eventId, shown)
}
onShownChanged: controller.onMessageShownChanged(eventId, shown)

Component.onCompleted: {
if (shown)
Expand Down

0 comments on commit 593fa93

Please sign in to comment.