Tk Source Code

Check-in [600ab331]
Login

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

Overview
Comment:Fix typo
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | tka11y
Files: files | file ages | folders
SHA3-256: 600ab33192745a8ebe611bece0f5fc3923b9ec06ccc9e271c279cf2ecfe4a551
User & Date: kevin_walzer 2025-08-15 00:25:23.992
Context
2025-08-15
01:17
Some progress on segfaults check-in: 2a98bd3d user: kevin_walzer tags: tka11y
00:25
Fix typo check-in: 600ab331 user: kevin_walzer tags: tka11y
00:24
Better integration of hash table search keys check-in: 24e3fe28 user: kevin_walzer tags: tka11y
Changes
Unified Diff Ignore Whitespace Patch
Changes to unix/tkUnixAccessibility.c.
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
    UpdateDescriptionCache(acc);
    UpdateValueCache(acc);
    UpdateRoleCache(acc);
    UpdateStateCache(acc);
    UpdateChildrenCache(acc); /* Added to update children on configure */

    /* Notify ATK of changes */
    if (acc->width > 0 && a.cc->height > 0 && acc->is_mapped) {
	BoundsChangedData *bcd = g_new0(BoundsChangedData, 1);
	bcd->obj = ATK_OBJECT(acc);
	bcd->rect.x = acc->x;
	bcd->rect.y = acc->y;
	bcd->rect.width = acc->width;
	bcd->rect.height = acc->height;
	RunOnMainThreadAsync(emit_bounds_changed, bcd);







|







1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
    UpdateDescriptionCache(acc);
    UpdateValueCache(acc);
    UpdateRoleCache(acc);
    UpdateStateCache(acc);
    UpdateChildrenCache(acc); /* Added to update children on configure */

    /* Notify ATK of changes */
    if (acc->width > 0 && acc->height > 0 && acc->is_mapped) {
	BoundsChangedData *bcd = g_new0(BoundsChangedData, 1);
	bcd->obj = ATK_OBJECT(acc);
	bcd->rect.x = acc->x;
	bcd->rect.y = acc->y;
	bcd->rect.width = acc->width;
	bcd->rect.height = acc->height;
	RunOnMainThreadAsync(emit_bounds_changed, bcd);