From 631de237a3ab6e440fb6ce546240ec8670a93741 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sun, 8 Sep 2019 13:36:02 +0200 Subject: [PATCH] Fix designer exit full screen mode icon and text back to enter mode Signed-off-by: William Desportes --- js/designer/move.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/designer/move.js b/js/designer/move.js index 86acc044f3..97e8f11da6 100644 --- a/js/designer/move.js +++ b/js/designer/move.js @@ -543,6 +543,9 @@ function Toggle_fullscreen () { value_sent = 'on'; $content.fullScreen(true); } else { + $img.attr('src', $img.data('enter')) + .attr('title', $span.data('enter')); + $span.text($span.data('enter')); $content.fullScreen(false); value_sent = 'off'; }