Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Revert unintended indentation changes |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | tka11y |
Files: | files | file ages | folders |
SHA3-256: |
fd50f0060500dec1b574ed6026770ece |
User & Date: | kevin_walzer 2025-06-26 04:35:48.577 |
Context
2025-06-26
| ||
04:35 | Revert unintended indentation changes Leaf check-in: fd50f006 user: kevin_walzer tags: tka11y | |
03:59 | Substantial attempt to track non-root toplevels and their child widgets in the accessibility hierarchy check-in: f5796a3e user: kevin_walzer tags: tka11y | |
Changes
Changes to win/tkWinAccessibility.c.
︙ | ︙ | |||
1942 1943 1944 1945 1946 1947 1948 | Tcl_CreateObjCommand(interp, "::tk::accessible::emit_focus_change", EmitFocusChanged, NULL, NULL); Tcl_CreateObjCommand(interp, "::tk::accessible::check_screenreader", IsScreenReaderRunning, NULL, NULL); return TCL_OK; } | > > > > > > > | 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 | Tcl_CreateObjCommand(interp, "::tk::accessible::emit_focus_change", EmitFocusChanged, NULL, NULL); Tcl_CreateObjCommand(interp, "::tk::accessible::check_screenreader", IsScreenReaderRunning, NULL, NULL); return TCL_OK; } /* * Local Variables: * mode: c * c-basic-offset: 4 * fill-column: 78 * End: */ |