Skip to content

Commit

Permalink
menus are in the correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhite510 authored and past-due committed Aug 29, 2023
1 parent e948ad6 commit e8f83d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hci/groups.cpp
Expand Up @@ -95,7 +95,7 @@ void GroupsForum::initialize()
// the layout should be like this when the build menu is open
id = IDOBJ_GROUP;
setCalcLayout(LAMBDA_CALCLAYOUT_SIMPLE({
psWidget->setGeometry(OBJ_BACKX, OBJ_BACKY - 80, OBJ_BACKWIDTH, OBJ_BACKHEIGHT - 40);
psWidget->setGeometry(OBJ_BACKX, OBJ_BACKY + 40, OBJ_BACKWIDTH, OBJ_BACKHEIGHT - 40);
}));
addTabList();
// create the 11 buttons for each group
Expand Down
2 changes: 1 addition & 1 deletion src/hci/objects_stats.cpp
Expand Up @@ -221,7 +221,7 @@ void ObjectsForm::initialize()
// creating an obj stat form
id = IDOBJ_FORM;
setCalcLayout(LAMBDA_CALCLAYOUT_SIMPLE({
psWidget->setGeometry(OBJ_BACKX, OBJ_BACKY, OBJ_BACKWIDTH, OBJ_BACKHEIGHT);
psWidget->setGeometry(OBJ_BACKX, OBJ_BACKY - 80, OBJ_BACKWIDTH, OBJ_BACKHEIGHT);
}));

addCloseButton();
Expand Down

0 comments on commit e8f83d6

Please sign in to comment.