Unverified Commit b5b0f67b authored by Steve Plimpton's avatar Steve Plimpton Committed by GitHub
Browse files

Merge pull request #852 from akohlmey/collected-small-bugfixes-and-updates

Collected small bugfixes and cleanups
parents a524d8c1 48509622
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -299,10 +299,10 @@ void Balance::command(int narg, char **arg)
    if (comm->layout == LAYOUT_UNIFORM) {
      if (xflag == USER || yflag == USER || zflag == USER)
        comm->layout = LAYOUT_NONUNIFORM;
    } else if (comm->style == LAYOUT_NONUNIFORM) {
    } else if (comm->layout == LAYOUT_NONUNIFORM) {
      if (xflag == UNIFORM && yflag == UNIFORM && zflag == UNIFORM)
        comm->layout = LAYOUT_UNIFORM;
    } else if (comm->style == LAYOUT_TILED) {
    } else if (comm->layout == LAYOUT_TILED) {
      if (xflag == UNIFORM && yflag == UNIFORM && zflag == UNIFORM)
        comm->layout = LAYOUT_UNIFORM;
      else comm->layout = LAYOUT_NONUNIFORM;