Skip to content

Commit

Permalink
DefaultMapScaleBar: allow size changes (#1092)
Browse files Browse the repository at this point in the history
  • Loading branch information
devemux86 committed Jan 12, 2024
1 parent 737143b commit 2a7fa50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vtm/src/org/oscim/scalebar/DefaultMapScaleBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
* Displays the default MapScaleBar.
*/
public class DefaultMapScaleBar extends MapScaleBar {
private static final int BITMAP_HEIGHT = 40;
private static final int BITMAP_WIDTH = 120;
public static int BITMAP_HEIGHT = 40;
public static int BITMAP_WIDTH = 120;
private static final int DEFAULT_HORIZONTAL_MARGIN = 5;
private static final int DEFAULT_VERTICAL_MARGIN = 0;
private static final int SCALE_BAR_MARGIN = 10;
Expand Down

0 comments on commit 2a7fa50

Please sign in to comment.