Method: Canis::Window#hide

Defined in:
lib/canis/core/system/window.rb

#hideObject

hide the window



400
401
402
403
404
405
406
# File 'lib/canis/core/system/window.rb', line 400

def hide
  #return unless visible? # added 2011-10-14 these 2 are not behaving properly
  Ncurses::Panel.hide_panel @panel.pointer
  #Ncurses.refresh # wnoutrefresh
  Ncurses::Panel.update_panels # added so below window does not need to do this 2011-10-1 
  @visible = false
end