mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge branch 'main' into AidanMaskelyne-pr-branch
This commit is contained in:
commit
dee84004f5
@ -5,6 +5,7 @@
|
|||||||
* This issue only affected Fallout 3, Fallout NV and Skyrim LE
|
* This issue only affected Fallout 3, Fallout NV and Skyrim LE
|
||||||
* Added logging to determine which downloaded files cannot be hashed
|
* Added logging to determine which downloaded files cannot be hashed
|
||||||
* This could occur in the downloading phase when installing a modlist when there are broken/corrupted files in the downloads folder
|
* This could occur in the downloading phase when installing a modlist when there are broken/corrupted files in the downloads folder
|
||||||
|
* Fixed Wabbajack crashing when double-clicking the browser window titlebar or URL
|
||||||
|
|
||||||
#### Version - 3.7.0.0 - 6/21/2024
|
#### Version - 3.7.0.0 - 6/21/2024
|
||||||
* Added Starfield support
|
* Added Starfield support
|
||||||
|
@ -25,7 +25,6 @@ public partial class BrowserWindow : MetroWindow
|
|||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
|
|
||||||
_disposable = new CompositeDisposable();
|
_disposable = new CompositeDisposable();
|
||||||
_serviceProvider = serviceProvider;
|
_serviceProvider = serviceProvider;
|
||||||
Browser = _serviceProvider.GetRequiredService<WebView2>();
|
Browser = _serviceProvider.GetRequiredService<WebView2>();
|
||||||
@ -42,9 +41,12 @@ public partial class BrowserWindow : MetroWindow
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void UIElement_OnMouseDown(object sender, MouseButtonEventArgs e)
|
private void UIElement_OnMouseDown(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.LeftButton == MouseButtonState.Pressed)
|
||||||
{
|
{
|
||||||
base.DragMove();
|
base.DragMove();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void BrowserWindow_OnActivated(object sender, EventArgs e)
|
private void BrowserWindow_OnActivated(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
@ -143,9 +143,12 @@ namespace Wabbajack
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void UIElement_OnMouseDown(object sender, MouseButtonEventArgs e)
|
private void UIElement_OnMouseDown(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.LeftButton == MouseButtonState.Pressed)
|
||||||
{
|
{
|
||||||
this.DragMove();
|
this.DragMove();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user