Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Tweak to update UI |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
34ad516f17f0e783a8c3a43137751b53 |
User & Date: | kevin 2019-12-06 04:23:52 |
Context
2022-10-09
| ||
01:50 | Minor tweaks check-in: 9f2e61715e user: kevin tags: trunk | |
2019-12-06
| ||
04:23 | Tweak to update UI check-in: 34ad516f17 user: kevin tags: trunk | |
2019-12-01
| ||
02:29 | Minor tweaks check-in: 32f17a64ae 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 . |
︙ | ︙ |