Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[core] fix icon-size for small data-driven values
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLoer committed Aug 22, 2018
1 parent 250eaff commit 33cd094
Show file tree
Hide file tree
Showing 4 changed files with 192 additions and 192 deletions.
4 changes: 2 additions & 2 deletions src/mbgl/programs/symbol_program.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ struct SymbolLayoutAttributes : gl::Attributes<
{{
tx,
ty,
static_cast<uint16_t>(sizeData.min * 10),
static_cast<uint16_t>(sizeData.max * 10)
static_cast<uint16_t>(sizeData.min * 256),
static_cast<uint16_t>(sizeData.max * 256)
}}
};
}
Expand Down
Loading

0 comments on commit 33cd094

Please sign in to comment.