(w)
| 258 | |
| 259 | |
| 260 | def _setup_dialog(w): |
| 261 | if w._windowingsystem == "aqua": |
| 262 | w.tk.call("::tk::unsupported::MacWindowStyle", "style", |
| 263 | w, "moveableModal", "") |
| 264 | elif w._windowingsystem == "x11": |
| 265 | w.wm_attributes(type="dialog") |
| 266 | |
| 267 | # -------------------------------------------------------------------- |
| 268 | # convenience dialogues |
no test coverage detected