Check-in [fcb11f227e]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:fix typo in tkvlc
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: fcb11f227e5ad63942f03503c074ef8c43ed7571
User & Date: chw 2019-06-09 13:39:11.563
Context
2019-06-09
13:39
add tk upstream changes check-in: 367ac8ead5 user: chw tags: trunk
13:39
fix typo in tkvlc check-in: fcb11f227e user: chw tags: trunk
2019-06-07
08:22
update tkdnd to version 2.9.2 check-in: fc16faf3b2 user: chw tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
undroid/tkdnd/demos/dndSpy.tcl became a regular file.
Changes to undroid/tkvlc/example/photoex.tcl.
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
}

# We use a photo image to draw libVLC media player
set photo [image create photo -width 320 -height 240]
set display [label .tkvlc -image $photo -background white -takefocus 1]
pack $display -fill both -expand 1

# Iinitialize libVLC
tkvlc::init tkvlc0 $photo

bind $display <1> {
    if {[tkvlc0 isplaying]} {
        tkvlc0 pause
    } else {
        tkvlc0 play







|







69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
}

# We use a photo image to draw libVLC media player
set photo [image create photo -width 320 -height 240]
set display [label .tkvlc -image $photo -background white -takefocus 1]
pack $display -fill both -expand 1

# Initialize libVLC
tkvlc::init tkvlc0 $photo

bind $display <1> {
    if {[tkvlc0 isplaying]} {
        tkvlc0 pause
    } else {
        tkvlc0 play