https://bugs.documentfoundation.org/show_bug.cgi?id=160580

--- Comment #10 from geoff183 <[email protected]> ---
The new behavior is aligned with other common UX designs. e.g these
applications also wrap around: xfce4-terminal, firefox, GIMP, thunar... I'm
sure there are plenty more. I also preferred the previous way This sort of
change probably won't be reverted or given an option.

I found this code snippet which selects the 3rd sheet:

  dim document   as object
  dim dispatcher as object
  document   = ThisComponent.CurrentController.Frame
  dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
  dim args1(0) as new com.sun.star.beans.PropertyValue
  args1(0).Name = "Nr"
  args1(0).Value = 3
  dispatcher.executeDispatch(document, ".uno:JumpToTable", "", 0, args1())

If you are motivated enough, you could make a macro triggered with two keyboard
shortcuts to do something like this:

  alt-pgup
  if current_sheet != 1
    goto current_sheet-1

  alt-pgdn
    get max_number_of_sheets
    if current_sheet != max_number_of_sheets
      goto current_sheet+1

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to