Bugfix: Set focus when table was shrinked and CUR_CELL might have been shrinked

This commit is contained in:
Michael Stapelberg
2009-02-28 01:12:05 +01:00
parent e4b637b67b
commit d8a6f41e39
4 changed files with 10 additions and 4 deletions

View File

@ -10,6 +10,8 @@
*/
#include <stdbool.h>
#include <xcb/xcb.h>
#include "data.h"
#ifndef _TABLE_H
@ -27,6 +29,6 @@ void init_table();
void expand_table_rows(Workspace *workspace);
void expand_table_cols(Workspace *workspace);
bool cell_exists(int col, int row);
void cleanup_table(Workspace *workspace);
void cleanup_table(xcb_connection_t *conn, Workspace *workspace);
#endif