Set window on top?

What method should I use to bring a window to the top after a SetFocus()? (Linux)

Tertius

Tertius Cronje wrote:

What method should I use to bring a window to the top after a SetFocus()? (Linux)

  frame.Raise()

ยทยทยท

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

Robin Dunn wrote:

Tertius Cronje wrote:

What method should I use to bring a window to the top after a SetFocus()? (Linux)

    frame.Raise()

Thanks