|
|
@ -9,6 +9,7 @@
|
|||
- fix: Disable terminal keyboard while unl0kr is running
|
||||
- feat: Extend --geometry flag to also accept display offsets
|
||||
- fix: Swap order of KDSKBMODE and KDSETMODE to prevent blank screen (#34)
|
||||
- fix: Increase maximum textarea width to prevent clipping on OnePlus 6 (#33)
|
||||
|
||||
## 0.2.0 (2022-05-27)
|
||||
|
||||
|
|
|
|||
3
main.c
|
|
@ -434,6 +434,7 @@ int main(int argc, char *argv[]) {
|
|||
const int keyboard_height = ver_res > hor_res ? ver_res / 3 : ver_res / 2;
|
||||
const int padding = keyboard_height / 8;
|
||||
const int label_width = hor_res - 2 * padding;
|
||||
const int textarea_container_max_width = LV_MIN(hor_res, ver_res);
|
||||
|
||||
/* Main flexbox */
|
||||
lv_obj_t *container = lv_obj_create(lv_scr_act());
|
||||
|
|
@ -512,7 +513,7 @@ int main(int argc, char *argv[]) {
|
|||
/* Textarea flexbox */
|
||||
lv_obj_t *textarea_container = lv_obj_create(container);
|
||||
lv_obj_set_size(textarea_container, LV_PCT(100), LV_SIZE_CONTENT);
|
||||
lv_obj_set_style_max_width(textarea_container, 512, LV_PART_MAIN);
|
||||
lv_obj_set_style_max_width(textarea_container, textarea_container_max_width, LV_PART_MAIN);
|
||||
lv_obj_set_flex_flow(textarea_container, LV_FLEX_FLOW_ROW);
|
||||
lv_obj_set_flex_align(textarea_container, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
|
||||
lv_obj_set_style_pad_left(textarea_container, padding, LV_PART_MAIN);
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |