Skip to content

Commit

Permalink
Merge pull request #397 from CBATeam/fix-settings-grid
Browse files Browse the repository at this point in the history
adjust settings 'RscDisplayConfigure' grid to 1.62
  • Loading branch information
commy2 authored Jul 11, 2016
2 parents 2ff2cd0 + 66333eb commit 05478f9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions addons/settings/script_component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@
#define IDC_PRESETS_CANCEL 8006
#define IDC_PRESETS_DELETE 8007

#define POS_X(N) ((N) * GUI_GRID_W + GUI_GRID_X)
#define POS_Y(N) ((N) * GUI_GRID_H + GUI_GRID_Y)
#define IS_APEX (productVersion select 2 >= 162)

#define POS_X(N) ((N) * GUI_GRID_W + ([GUI_GRID_X, GUI_GRID_CENTER_X] select IS_APEX))
#define POS_Y(N) ((N) * GUI_GRID_H + ([GUI_GRID_Y, GUI_GRID_CENTER_Y] select IS_APEX))
#define POS_W(N) ((N) * GUI_GRID_W)
#define POS_H(N) ((N) * GUI_GRID_H)

Expand Down

0 comments on commit 05478f9

Please sign in to comment.