Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Bug fix for fixed navbar (1.5.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
indywidualny committed Apr 28, 2015
1 parent f5d17b7 commit 34e54d8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Binary file modified app/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "org.indywidualni.fblite"
minSdkVersion 14
targetSdkVersion 22
versionCode 5
versionName "1.5.1"
versionCode 6
versionName "1.5.2"
}
buildTypes {
release {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.indywidualni.fblite"
android:versionCode="5"
android:versionName="1.5.1" >
android:versionCode="6"
android:versionName="1.5.2" >

<uses-sdk
android:minSdkVersion="14"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class MyAppWebViewClient extends WebViewClient {

// get window's needed height
private static final float density = context.getResources().getDisplayMetrics().density;
private static final float height = (context.getResources().getDisplayMetrics().heightPixels - 48) / density - 44;
private static final float height = (context.getResources().getDisplayMetrics().heightPixels - 48) / density - 44 + 8;

// convert css file to string only one time
private static String cssFile;
Expand Down

0 comments on commit 34e54d8

Please sign in to comment.