Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cleanup |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
65f2e59b1423ca8ac0d04524c2d67aeb |
User & Date: | peter 2017-03-17 00:04:09.305 |
Context
2017-03-17
| ||
00:04 | Better locating of editor check-in: 51b6d9a9be user: peter tags: trunk | |
00:04 | Cleanup check-in: 65f2e59b14 user: peter tags: trunk | |
2017-03-16
| ||
13:50 | Comment check-in: 62cd4fd2c4 user: peter tags: trunk | |
Changes
Changes to eskil.vfs/lib/psballoon/psballoon.tcl.
︙ | ︙ | |||
96 97 98 99 100 101 102 | set iw [font measure $font $msg] } } #Don't create a balloon if the text is fully visible. set create [expr {$iw > $ww - 8}] } else { if {[string index $msg 0] eq "\["} { | | | | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | set iw [font measure $font $msg] } } #Don't create a balloon if the text is fully visible. set create [expr {$iw > $ww - 8}] } else { if {[string index $msg 0] eq "\["} { set msg [subst -novariables -nobackslashes $msg] } set iw [font measure $font $msg] } if {$create} { set x [expr {[winfo rootx $w] + $ix}] set y [expr {[winfo rooty $w] + $iy + $ih + 2}] if {$x + $iw + 8 > [winfo screenwidth $w]} { set x [expr {[winfo screenwidth $w] - $iw - 8}] } toplevel .balloon -bg black wm overrideredirect .balloon 1 label .balloon.l \ -text $msg -relief flat -font $font -justify left \ -bg #ffffaa -fg black -padx 2 -pady 0 -anchor "w" pack .balloon.l -side left -padx 1 -pady 1 wm geometry .balloon +${x}+${y} set balloon(created) 1 } } } |