diff options
-rw-r--r-- | control | 2 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | ted.c | 1 |
3 files changed, 2 insertions, 3 deletions
@@ -6,6 +6,6 @@ Architecture: amd64 Essential: no Maintainer: Pommicket <pommicket@gmail.com> Description: A text editor. -Installed-Size: 2424832 +Installed-Size: 3387392 Depends: libsdl2-2.0-0 Homepage: https://github.com/pommicket/ted @@ -1,6 +1,4 @@ /* -TODO: -- windows UI scaling FUTURE FEATURES: - autodetect indentation (tabs vs spaces) - font setting & support for multiple fonts to cover more characters @@ -351,6 +351,7 @@ static float ted_get_ui_scaling(Ted *ted) { return 1; return (float)dpi / 96.0f; #else + (void)ted; return 1; #endif } |