init: scale affinity location

Issue #1412
This commit is contained in:
Alexander Boettcher 2020-01-14 13:04:06 +01:00 committed by Christian Helmuth
parent 285a33c97d
commit d132fc0a73
1 changed files with 2 additions and 2 deletions

View File

@ -673,8 +673,8 @@ Genode::Affinity Init::Child::filter_session_affinity(Affinity const &session_af
/* subordinate session affinity to child affinity subspace */
Affinity::Location location(child_location
.multiply_position(session_space)
.transpose(session_location.xpos(),
session_location.ypos()));
.transpose(session_location.xpos() * child_space.width(),
session_location.ypos() * child_space.height()));
return Affinity(space, location);
}