Commit 5fed7c2b authored by Dietmar Maurer's avatar Dietmar Maurer

add workaround for autoScroll bug

parent d8687447
...@@ -151,7 +151,13 @@ Ext.define('PVE.window.Snapshot', { ...@@ -151,7 +151,13 @@ Ext.define('PVE.window.Snapshot', {
xtype: 'grid', xtype: 'grid',
region: 'center', region: 'center',
layout: 'fit', layout: 'fit',
autoScroll: true, // NOTE: autoscroll is buggy with firefox, so
// we use native scrollbars
// autoScroll: true,
scroll: false,
viewConfig: {
style: { overflow: 'auto', overflowX: 'hidden' }
},
height: 200, height: 200,
store: summarystore, store: summarystore,
columns: [ columns: [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment