Add minimum size for terminal

At the moment the terminal can a negativ size and resizing it can create
some artifacts.
This commit is contained in:
Alexander Preisinger 2012-06-18 20:59:26 +02:00 committed by Kristian Høgsberg
parent 362b672111
commit e2b88c093a

View file

@ -772,6 +772,12 @@ resize_handler(struct widget *widget,
struct terminal *terminal = data;
int32_t columns, rows, m;
if (width < 200)
width = 200;
if (height < 50)
height = 50;
m = 2 * terminal->margin;
columns = (width - m) / (int32_t) terminal->extents.max_x_advance;
rows = (height - m) / (int32_t) terminal->extents.height;