Bugfix: Correctly fix the percent values for resizing when making a floating con tiling (Thanks mseed) (+testcase)

This commit is contained in:
Michael Stapelberg
2011-02-28 23:59:56 +01:00
parent b595ff05c5
commit 33c2b4e582
2 changed files with 22 additions and 5 deletions

View File

@ -164,11 +164,8 @@ void floating_disable(Con *con, bool automatic) {
con->parent = focused;
else con->parent = focused->parent;
/* XXX: We adjust the percentage value to start with a fair value. Floating
* cons always have 1.0 as percent which doesnt work so well when
* re-inserting (the formerly floating con would get 50% of the target
* con). */
con->percent = (1.0 / con_num_children(con->parent));
/* con_fix_percent will adjust the percent value */
con->percent = 0.0;
TAILQ_INSERT_TAIL(&(con->parent->nodes_head), con, nodes);
TAILQ_INSERT_TAIL(&(con->parent->focus_head), con, focused);