1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-23 22:52:34 +01:00

fixed bug in ScrollTableViewRowToVisible

This commit is contained in:
kojima
2001-05-18 17:07:18 +00:00
parent 7d64e19f5a
commit 60611fbd47

View File

@@ -233,8 +233,8 @@ static void scrollToPoint(WMTableView *table, int x, int y)
float value, prop;
if (size.width > W_VIEW_WIDTH(table->tableView)) {
prop = (float)size.width / (float)W_VIEW_WIDTH(table->tableView);
value = x * (float)(size.width - W_VIEW_WIDTH(table->tableView));
prop = (float)W_VIEW_WIDTH(table->tableView) / (float)size.width;
value = (float)x / (float)(size.width - W_VIEW_WIDTH(table->tableView));
} else {
prop = 1.0;
value = 0.0;
@@ -243,12 +243,13 @@ static void scrollToPoint(WMTableView *table, int x, int y)
if (size.height > W_VIEW_HEIGHT(table->tableView)) {
prop = (float)size.height / (float)W_VIEW_HEIGHT(table->tableView);
value = y * (float)(size.height - W_VIEW_HEIGHT(table->tableView));
prop = (float)W_VIEW_HEIGHT(table->tableView) / (float)size.height;
value = (float)y / (float)(size.height - W_VIEW_HEIGHT(table->tableView));
} else {
prop = 1.0;
value = 0.0;
}
WMSetScrollerParameters(table->vscroll, value, prop);