diff --git a/public/themes/pterodactyl/js/frontend/console.js b/public/themes/pterodactyl/js/frontend/console.js index 96639b156..88ceb1196 100644 --- a/public/themes/pterodactyl/js/frontend/console.js +++ b/public/themes/pterodactyl/js/frontend/console.js @@ -116,7 +116,7 @@ $(document).ready(function () { }); $terminal.on('scroll', function () { - if ($(this).scrollTop() + $(this).innerHeight() < $(this)[0].scrollHeight) { + if ($(this).scrollTop() + $(this).innerHeight() + 50 < $(this)[0].scrollHeight) { $scrollNotify.removeClass('hidden'); } else { $scrollNotify.addClass('hidden');