Small bugfix for size (0,0) windows

This commit is contained in:
Josh Yelon 2006-08-22 16:14:58 +00:00
parent a1616a6ec7
commit 5dc1385356
1 changed files with 2 additions and 1 deletions

View File

@ -250,7 +250,8 @@ make_output(GraphicsPipe *pipe,
if (win_prop.has_size()) {
x_size = win_prop.get_x_size();
y_size = win_prop.get_y_size();
} else {
}
if ((x_size == 0)&&(y_size == 0)) {
flags |= GraphicsPipe::BF_size_track_host;
}
if (host != 0) {