diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2021-09-26 14:32:38 +0100 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2021-09-26 14:32:38 +0100 |
| commit | 6034d6fd4237299b626a49530dd6e8a6ba929871 (patch) | |
| tree | 0ebe908c0d291eb5098948a6cb8cdf2fd30ca5d8 /tabbed.c | |
| parent | deead3db77f73aba74017fa31e87f6a08021d888 (diff) | |
| download | tabbed-6034d6fd4237299b626a49530dd6e8a6ba929871.tar.gz tabbed-6034d6fd4237299b626a49530dd6e8a6ba929871.zip | |
Respect the x,y origin coords given as geometry
Diffstat (limited to 'tabbed.c')
| -rw-r--r-- | tabbed.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1072,7 +1072,7 @@ setup(void) size_hint->width = ww; size_hint->min_height = bh + 1; } else { - size_hint->flags = PMaxSize | PMinSize; + size_hint->flags = PPosition | PMaxSize | PMinSize; size_hint->min_width = size_hint->max_width = ww; size_hint->min_height = size_hint->max_height = wh; } |
