Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iceberg repositories table column headers move when window is clicked #17692

Open
Rinzwind opened this issue Jan 26, 2025 · 1 comment
Open

Comments

@Rinzwind
Copy link
Contributor

As demonstrated in the following video, the table column headers in an Iceberg repositories window move when the window is clicked. The Playground snippet used in the video shows the position of the first column’s header (‘Repositories’) on the transcript. The position is [email protected] initially, then changes three times as the window is clicked. At the last click, the rows in the table can be seen to move as well. Earlier similar issues are issue #16389 and issue #17384.

Demo.Repositories.Table.Column.Headers.Moving.mp4
@Rinzwind
Copy link
Contributor Author

The snippet used in the video:

[
	(Delay forSeconds: 5) wait.
	100 timesRepeat: [
		SystemWindow topWindow allMorphs
			detect: [ :morph | morph class = StringMorph and: [ morph contents = 'Repositories' ] ]
			ifFound: [ :morph |
				(position := morph position) = previousPosition ifFalse: [
					Transcript show: (previousPosition := position); cr ] ].
		(Delay forSeconds: 1) wait ] ] fork

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant