aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/display/window.rs
Commit message (Collapse)AuthorAge
* Fix clippy warningsChristian Duerr2021-07-03
|
* Limit the maximum DPR on X11 to 10Christian Duerr2021-02-15
| | | | | | | | | | | Since there have a bunch of problems caused by an excessive DPI reported by XRandr, this limits the maximum DPR on X11 to 10. These issues would commonly cause problems like long startup times or crashes, which are hard to troubleshoot for the user. While a limit of 10 might not eliminate all of these issues, it should still make it possible for Alacritty to start to make troubleshooting simpler. Fixes #3214.
* Fix segmentation fault on shutdown with WaylandChristian Duerr2021-01-29
| | | Fixes #4702.
* Move renderable cell transformation to alacrittyChristian Duerr2021-01-24
This refactors a large chunk of the alacritty_terminal API to expose all data necessary for rendering uniformly through the `renderable_content` call. This also no longer transforms the cells for rendering by a GUI but instead just reports the content from a terminal emulation perspective. The transformation into renderable cells is now done inside the alacritty crate. Since the terminal itself only ever needs to know about modified color RGB values, the configuration for colors was moved to the alacritty UI code.