Fix broken font scaling in the retrieve metadata/progress queue dialog.
Closes #2218
This commit is contained in:
parent
62e2ccafa0
commit
78e31cf50f
3 changed files with 2 additions and 3 deletions
|
@ -101,7 +101,6 @@ function _init() {
|
|||
renderItem={_rowToTreeItem}
|
||||
showHeader={true}
|
||||
columns={tableColumns}
|
||||
disableFontSizeScaling={true}
|
||||
onActivate={_handleActivate}
|
||||
/>
|
||||
</IntlProvider>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
id="zotero-progress">
|
||||
<script src="include.js"></script>
|
||||
<script src="progressQueueDialog.js"/>
|
||||
<vbox style="padding:10px" flex="1">
|
||||
<vbox id="zotero-progress-box" style="padding:10px" flex="1">
|
||||
<label id="label" control="progress-indicator" value=""/>
|
||||
<hbox align="center">
|
||||
<progressmeter id="progress-indicator" mode="determined" flex="1"/>
|
||||
|
|
|
@ -83,7 +83,7 @@ Zotero.ProgressQueueDialog = function (progressQueue) {
|
|||
};
|
||||
|
||||
function _onWindowLoaded() {
|
||||
var rootElement = _progressWindow.document.getElementById('zotero-progress');
|
||||
var rootElement = _progressWindow.document.getElementById('zotero-progress-box');
|
||||
Zotero.setFontSize(rootElement);
|
||||
|
||||
_progressIndicator = _progressWindow.document.getElementById('progress-indicator');
|
||||
|
|
Loading…
Add table
Reference in a new issue