1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

compilation issue

This commit is contained in:
Nikolay Pultsin 2013-05-26 14:48:54 +01:00
parent 58c5aa7773
commit bf3b6f5e05

View file

@ -72,6 +72,7 @@ public final class FBReaderApp extends ZLApplication {
public final ZLIntegerRangeOption TopMarginOption;
public final ZLIntegerRangeOption BottomMarginOption;
public final ZLIntegerRangeOption SpaceBetweenColumnsOption;
public final ZLIntegerRangeOption FooterHeightOption;
{
final int dpi = ZLibrary.Instance().getDisplayDPI();
final int x = ZLibrary.Instance().getPixelWidth();
@ -86,12 +87,11 @@ public final class FBReaderApp extends ZLApplication {
TopMarginOption = new ZLIntegerRangeOption("Options", "TopMargin", 0, 100, 0);
BottomMarginOption = new ZLIntegerRangeOption("Options", "BottomMargin", 0, 100, 4);
SpaceBetweenColumnsOption = new ZLIntegerRangeOption("Options", "SpaceBetweenColumns", 0, 300, 3 * horMargin);
FooterHeightOption = new ZLIntegerRangeOption("Options", "FooterHeight", 8, dpi / 8, dpi / 20);
}
public final ZLIntegerRangeOption ScrollbarTypeOption =
new ZLIntegerRangeOption("Options", "ScrollbarType", 0, 3, FBView.SCROLLBAR_SHOW_AS_FOOTER);
public final ZLIntegerRangeOption FooterHeightOption =
new ZLIntegerRangeOption("Options", "FooterHeight", 8, dpi / 8, dpi / 20);
public final ZLBooleanOption FooterShowTOCMarksOption =
new ZLBooleanOption("Options", "FooterShowTOCMarks", true);
public final ZLBooleanOption FooterShowClockOption =