Allow cols()/rows() to affect orientation of dynamic axis#438
Merged
schnz merged 1 commit intogTile:masterfrom Jan 20, 2026
Merged
Allow cols()/rows() to affect orientation of dynamic axis#438schnz merged 1 commit intogTile:masterfrom
schnz merged 1 commit intogTile:masterfrom
Conversation
When placing windows inside a dynamic cell, respect the orientation of the cell so that * cols(1d) creates as many columns as there are windows * rows(1d) creates rows for every window * cols(1,1:rows(1d)) creates 1 fixed 50% window then dynamic rows * rows(1,1:cols(1d)) creates upper 50% window, then dynamic columns Fixes gTile#435
Member
|
Hey @SeppoTakalo , sorry for kept you waiting so long. This is a great idea you had there. Just made a few rudimentary tests with the most recent version of the extension and it looks good. I am afraid there won't be a backport for older Gnome versions. I assume you run your self-transpiled version of the extension anyways. Thanks for the contribution. Once you upgrade to Gnome 49 your change will be available in the upstream extension as well :) |
Member
|
By the way, I would very much appreciate some additional documentation in the |
schnz
added a commit
that referenced
this pull request
Jan 24, 2026
Due to the breaking change in PR #438, the main and main-inverted layout of the autotile feature bahved differently. Windows in the scondary area were inadvertently arranged left to right instead of top to bottom.
schnz
added a commit
that referenced
this pull request
Jan 24, 2026
Due to the breaking change in PR #438, the main and main-inverted layout of the autotile feature bahved differently. Windows in the scondary area were inadvertently arranged left to right instead of top to bottom.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When placing windows inside a dynamic cell, respect the orientation of the cell so that
Fixes #435
Examples with four windows:
cols(1d)
rows(1d)
cols(1,1:rows(1d))
rows(1,1:cols(1d))
cols(1:rows(1d), 1: rows(1d))
Tested
I tested this only against V59 tag, as my Gnome is older.