Workaround for an obscure bug + add missing link to EPUB options help
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@179 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
751e14eb9f
commit
798b94560e
6 changed files with 41 additions and 13 deletions
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Version 1.4 (2014-08-18)
|
||||
* Version 1.4 (2014-09-25)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -69,8 +69,14 @@ public class XhtmlOptionsDialog extends OptionsDialogBase {
|
|||
// Style
|
||||
loadConfig(xProps);
|
||||
loadCheckBoxOption(xProps, "ConvertToPx");
|
||||
loadNumericOption(xProps, "Scaling");
|
||||
loadNumericOption(xProps, "ColumnScaling");
|
||||
int nScaling = loadNumericOption(xProps, "Scaling");
|
||||
if (nScaling<=1) { // Workaround for an obscure bug in the extension manager
|
||||
setNumericFieldValue("Scaling",100);
|
||||
}
|
||||
int nColumnScaling = loadNumericOption(xProps, "ColumnScaling");
|
||||
if (nColumnScaling<=1) {
|
||||
setNumericFieldValue("ColumnScaling",100);
|
||||
}
|
||||
loadCheckBoxOption(xProps, "OriginalImageSize");
|
||||
|
||||
// Special content
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue