Treat Mac as special case rather than GTK.

(Windows also needs the padding we use for GTK.)
This commit is contained in:
Jeff Young 2018-04-26 15:45:28 +01:00
parent a7528df198
commit 888c434776
1 changed files with 3 additions and 3 deletions

View File

@ -53,10 +53,10 @@ void InvokeDialogCreateBOMEditor( SCH_EDIT_FRAME* aCaller )
#define SHOW_FIELD_COLUMN 1 #define SHOW_FIELD_COLUMN 1
#define GROUP_BY_COLUMN 2 #define GROUP_BY_COLUMN 2
#ifdef __WXGTK__ #ifdef __WXMAC__
#define CHECKBOX_COLUMN_MARGIN 15
#else
#define CHECKBOX_COLUMN_MARGIN 5 #define CHECKBOX_COLUMN_MARGIN 5
#else
#define CHECKBOX_COLUMN_MARGIN 15
#endif #endif
#define QUANTITY_COLUMN ( GetNumberCols() - 1 ) #define QUANTITY_COLUMN ( GetNumberCols() - 1 )