Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bug fix in file select |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
433fedb7d2dd108a7fc66d705089cc62 |
User & Date: | peter 2019-02-04 16:17:33.792 |
Context
2019-02-04
| ||
23:09 | Reworked extraction of files from patch, to make it work in all supported systems. check-in: 20868060ad user: peter tags: trunk | |
16:17 | Bug fix in file select check-in: 433fedb7d2 user: peter tags: trunk | |
16:08 | Revert bad file. check-in: a50e753c1b user: peter tags: trunk | |
Changes
Changes to src/rev.tcl.
︙ | ︙ | |||
1818 1819 1820 1821 1822 1823 1824 | # Splash screen for visual feedback set now [clock clicks -milliseconds] ttk::label $w.splash -text "Committing" -anchor center -font myfont place $w.splash -x 0 -y 0 -relwidth 1.0 -relheight 1.0 update # Commit | | | 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 | # Splash screen for visual feedback set now [clock clicks -milliseconds] ttk::label $w.splash -text "Committing" -anchor center -font myfont place $w.splash -x 0 -y 0 -relwidth 1.0 -relheight 1.0 update # Commit set cmd [list {*}$precmd $res {*}$todo] set sts [catch {exec {*}$cmd} msg] set msg [string trim $msg] if {($useSts && $sts) || (!$useSts && $msg ne "")} { destroy $w tk_messageBox -icon error -title "$system commit error" -message $msg \ -parent $top return |
︙ | ︙ |