end_full_screen

Declaration

end_full_screen

Description

Returns the application from full screen mode to normal viewing mode. The application is always returned to a non-maximized state (Windows).

See Also

begin_full_screen
window and frame functions

Window_Manager

Example

script set_preferences is
  if user_wants_full_screen then
    begin_full_screen
  else
    end_full_screen
  end
end