FAQ#18
Why does program XYZ appears/turns as/to a gray canvas?
| Category: | Programs | Difficulty: | ![]() |
| Assignee: | - | Due date: | |
| Related issue: | - | Related Message: | - |
| Related version: | - | Views: | 981 |
| Valid: | Valid |
Answer
Generally, this happens, when a program needs a specific aspect ratio and subtle sets a gravity that violates this. Windows can tell the window manager about this kind of preferences via their size hints and subtle can honor those.
There are two possible ways:
- Enable size hints globally with the :resize option
Numbers: on /off
1 set :resize, true - Enable this per program via tag
Numbers: on /off
1 tag "name" do 2 match "name" 3 resize true 4 end
Note: This can happen with Java too, see here for more information.
Also available in: PDF
