diff --git a/greasepencil_tools/__init__.py b/greasepencil_tools/__init__.py
index 24b0399a20c5a7410e9efccae2df2ef67a973f0e..66a9f6118644f77cfaf9b05c4260641780dfb7e0 100644
--- a/greasepencil_tools/__init__.py
+++ b/greasepencil_tools/__init__.py
@@ -21,7 +21,7 @@ bl_info = {
 "name": "Grease Pencil Tools",
 "description": "Extra tools for Grease Pencil",
 "author": "Samuel Bernou, Antonio Vazquez, Daniel Martinez Lara, Matias Mendiola",
-"version": (1, 4, 1),
+"version": (1, 4, 2),
 "blender": (2, 91, 0),
 "location": "Sidebar > Grease Pencil > Grease Pencil Tools",
 "warning": "",
diff --git a/greasepencil_tools/timeline_scrub.py b/greasepencil_tools/timeline_scrub.py
index 3f69ebb9b94462169b57da3d5295c89d602dfd6c..75e2cef44bd6f2c32b11c6ec0dbc43ebbb7692a1 100644
--- a/greasepencil_tools/timeline_scrub.py
+++ b/greasepencil_tools/timeline_scrub.py
@@ -233,6 +233,12 @@ class GPTS_OT_time_scrub(bpy.types.Operator):
 
         self.hud = prefs.use_hud
         if not self.hud:
+            ## Same as end settings when HUD is On
+            if self.lock_range:
+                self.pos = [i for i in self.pos if self.f_start <= i <= self.f_end]
+            self.pos = np.asarray(self.pos)
+            if self.rolling_mode:
+                context.scene.frame_current = self.new_frame
             context.window_manager.modal_handler_add(self)
             return {'RUNNING_MODAL'}