Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | UI tweak for update |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4d0140ef13d4819ce173e7529df45853 |
User & Date: | kevin 2019-12-06 04:26:13 |
Context
2020-11-29
| ||
18:05 | Rebuild for Big Sur Leaf check-in: 7f1b896e54 user: kevin tags: trunk | |
2019-12-06
| ||
04:26 | UI tweak for update check-in: 4d0140ef13 user: kevin tags: trunk | |
2019-12-01
| ||
02:26 | Minor tweaks check-in: b48abdc55a user: kevin tags: trunk | |
Changes
Changes to libs/softwareupdate/softwareupdate.tcl.
︙ | ︙ | |||
173 174 175 176 177 178 179 | wm withdraw .updateprogress update idletasks ttk::frame .updateprogress.f -padding 5 pack .updateprogress.f -fill both -expand yes | | | < | 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | wm withdraw .updateprogress update idletasks ttk::frame .updateprogress.f -padding 5 pack .updateprogress.f -fill both -expand yes ttk::label .updateprogress.f.l -image $icon -padding 10 pack .updateprogress.f.l -side left -fill both -expand yes ttk::frame .updateprogress.f.r pack .updateprogress.f.r -side right -fill both -expand yes ttk::label .updateprogress.f.r.t -text "Checking for updates..." -padding 5 pack .updateprogress.f.r.t -side top -fill both -expand yes ttk::frame .updateprogress.f.r.f -padding 5 pack .updateprogress.f.r.f -side top -fill both -expand yes ttk::progressbar .updateprogress.f.r.f.progress -mode indeterminate -orient horizontal pack .updateprogress.f.r.f.progress -fill both -expand yes -side top .updateprogress.f.r.f.progress start ttk::button .updateprogress.f.r.f.b -text "Cancel" -command {destroy .updateprogress} pack .updateprogress.f.r.f.b -side bottom -fill both -expand no wm resizable .updateprogress 0 0 wm deiconify .updateprogress raise .updateprogress wm transient .updateprogress . |
︙ | ︙ |