| File ChangeLog changed (mode: 100644) (index 683ff5a98..2c0c33a60) |
| 253 |
253 |
Fixed startup commands being executed on loading sessions. Thanks to |
Fixed startup commands being executed on loading sessions. Thanks to |
| 254 |
254 |
maxigaz. |
maxigaz. |
| 255 |
255 |
|
|
|
256 |
|
Fixed dialog's title being hidden when it's longer than the dialog's |
|
257 |
|
message. |
|
258 |
|
|
| 256 |
259 |
0.14-beta to 0.14 (2025-02-08) |
0.14-beta to 0.14 (2025-02-08) |
| 257 |
260 |
|
|
| 258 |
261 |
Improved documentation on zh/zl menu keys a bit. |
Improved documentation on zh/zl menu keys a bit. |
| File src/modes/dialogs/msg_dialog.c changed (mode: 100644) (index 2f908a8db..a16bf82bd) |
| ... |
... |
draw_msg(const char title[], const char msg[], const char ctrl_msg[], |
| 593 |
593 |
ctrl_msg_n = MAX(measure_sub_lines(ctrl_msg, /*skip_empty=*/0, &wctrl_msg), |
ctrl_msg_n = MAX(measure_sub_lines(ctrl_msg, /*skip_empty=*/0, &wctrl_msg), |
| 594 |
594 |
1U); |
1U); |
| 595 |
595 |
|
|
| 596 |
|
int wmsg = measure_text_width(msg); |
|
|
596 |
|
int wmsg = MAX(measure_text_width(title), measure_text_width(msg)); |
| 597 |
597 |
|
|
| 598 |
598 |
/* We start with maximum height and reduce is later. */ |
/* We start with maximum height and reduce is later. */ |
| 599 |
599 |
int max_h = sh - 2 - ui_stat_height(); |
int max_h = sh - 2 - ui_stat_height(); |