mirror of https://github.com/zlatinb/muwire
fix building from tarball
parent
53362018be
commit
edede81ffc
|
@ -94,8 +94,9 @@ class MainFrameView {
|
||||||
settings = application.context.get("ui-settings")
|
settings = application.context.get("ui-settings")
|
||||||
int rowHeight = application.context.get("row-height")
|
int rowHeight = application.context.get("row-height")
|
||||||
String revision = ""
|
String revision = ""
|
||||||
if (metadata["build.revision"] != null)
|
String build = metadata["build.revision"]
|
||||||
revision = " revision " + metadata["build.revision"].substring(0,10)
|
if (build != null && !build.isEmpty())
|
||||||
|
revision = " revision " + build.substring(0,10)
|
||||||
|
|
||||||
int mainFrameX = 1
|
int mainFrameX = 1
|
||||||
int mainFrameY = 1
|
int mainFrameY = 1
|
||||||
|
|
Loading…
Reference in New Issue