Skip to content

Commit 34d3fb3

Browse files
committed
Fix Application version label positioning
Fixes #359 (App version wrongly positioned)
1 parent b9aa94f commit 34d3fb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Application/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ export default function(App, appData, platformSettings) {
130130
.then(() => {
131131
Metrics.app.loaded()
132132

133-
this.w = this.config.stage.w
134-
this.h = this.config.stage.h
133+
this.w = this.config.stage.w / this.config.stage.precision
134+
this.h = this.config.stage.h / this.config.stage.precision
135135

136136
AppData = appData
137137

0 commit comments

Comments
 (0)