gtk: update some comments/function names, take min sizes into account

This commit is contained in:
Jeffrey C. Ollie
2026-02-21 10:41:28 -06:00
parent 0af3477e35
commit 733d307bf4
3 changed files with 11 additions and 13 deletions

View File

@@ -46,8 +46,8 @@ const Renderer = rendererpkg.Renderer;
/// being resized to a size that is too small to be useful. These defaults
/// are chosen to match the default size of Mac's Terminal.app, but is
/// otherwise somewhat arbitrary.
const min_window_width_cells: u32 = 10;
const min_window_height_cells: u32 = 4;
pub const min_window_width_cells: u32 = 10;
pub const min_window_height_cells: u32 = 4;
/// The maximum number of key tables that can be active at any
/// given time. `activate_key_table` calls after this are ignored.