From 83cfd308b4071874d567b1b593cb0e308091c5a6 Mon Sep 17 00:00:00 2001 From: Choongkyu Date: Wed, 13 Jan 2021 11:08:39 -0800 Subject: [PATCH] gui: Fix log-tailing behavior when scrolled to top (fixes #7267) (#7272) --- gui/default/syncthing/core/syncthingController.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/default/syncthing/core/syncthingController.js b/gui/default/syncthing/core/syncthingController.js index 1f7db5055..d6f9ce13a 100755 --- a/gui/default/syncthing/core/syncthingController.js +++ b/gui/default/syncthing/core/syncthingController.js @@ -1198,6 +1198,7 @@ angular.module('syncthing.core') }).error($scope.emitHTTPError); }, show: function () { + $scope.logging.paused = false; $scope.logging.refreshFacilities(); $scope.logging.timer = $timeout($scope.logging.fetch); var textArea = $('#logViewerText');