Increase wheel scroll amount

- Issue MatterHackers/MCCentral#2850
Scroll wheel is nearly useless on NewTabPage
This commit is contained in:
John Lewin 2018-02-26 16:39:52 -08:00
parent 970be1ca17
commit 4d961e7b2c
2 changed files with 12 additions and 4 deletions

View file

@ -37,25 +37,27 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.PlusTab
{
private ExplorerFeedItem item;
public static int IconSize => (int)(40 * GuiWidget.DeviceScale);
public static int ItemSpacing { get; } = 10;
public ExploreItem(ExplorerFeedItem item, ThemeConfig theme)
{
int spacing = 10;
this.HAnchor = HAnchor.Absolute;
this.Width = 400 * GuiWidget.DeviceScale;
//this.Border = spacing;
this.Padding = spacing;
this.Padding = ItemSpacing;
this.item = item;
if (item.icon != null)
{
ImageBuffer image = new ImageBuffer((int)(40 * GuiWidget.DeviceScale), (int)(40 * GuiWidget.DeviceScale));
ImageBuffer image = new ImageBuffer(IconSize, IconSize);
var imageWidget = new ImageWidget(image)
{
Selectable = false,
VAnchor = VAnchor.Top,
Margin = new BorderDouble(right: spacing)
Margin = new BorderDouble(right: ItemSpacing)
};
imageWidget.Load += (s, e) => ApplicationController.Instance.DownloadToImageAsync(image, item.icon, true, new BlenderPreMultBGRA());