We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fcd24d commit ed05e9fCopy full SHA for ed05e9f
1 file changed
lib/choose_repository.tcl
@@ -286,7 +286,9 @@ method _next {action} {
286
destroy $w_body
287
if {![winfo exists $w_next]} {
288
${NS}::button $w_next -default active
289
- pack $w_next -side right -padx 5 -before $w_quit
+ set pos -before
290
+ if {[tk windowingsystem] eq "win32"} { set pos -after }
291
+ pack $w_next -side right -padx 5 $pos $w_quit
292
}
293
_do_$action $this
294
0 commit comments