Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ public boolean configureFromXML(final ModelReader model_reader, final Widget wid
/** 'grid_step_x' property */
public static final WidgetPropertyDescriptor<Integer> propGridStepX =
newIntegerPropertyDescriptor(WidgetPropertyCategory.MISC, "grid_step_x", Messages.WidgetProperties_GridStepX,
4, Integer.MAX_VALUE);
1, Integer.MAX_VALUE);

/** 'grid_step_y' property */
public static final WidgetPropertyDescriptor<Integer> propGridStepY =
newIntegerPropertyDescriptor(WidgetPropertyCategory.MISC, "grid_step_y", Messages.WidgetProperties_GridStepY,
4, Integer.MAX_VALUE);
1, Integer.MAX_VALUE);

private volatile WidgetProperty<Macros> macros;
private volatile WidgetProperty<WidgetColor> background;
Expand Down