mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #2606 from wabbajack-tools/clickyfix
Fix for crash when right clicking or doubler clicking browser url or window bar.
This commit is contained in:
commit
75a07ea050
@ -5,6 +5,7 @@
|
||||
* This issue only affected Fallout 3, Fallout NV and Skyrim LE
|
||||
* 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
|
||||
* Fixed Wabbajack crashing when double-clicking the browser window titlebar or URL
|
||||
|
||||
#### Version - 3.7.0.0 - 6/21/2024
|
||||
* Added Starfield support
|
||||
|
@ -25,7 +25,6 @@ public partial class BrowserWindow : MetroWindow
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
|
||||
_disposable = new CompositeDisposable();
|
||||
_serviceProvider = serviceProvider;
|
||||
Browser = _serviceProvider.GetRequiredService<WebView2>();
|
||||
@ -43,7 +42,10 @@ public partial class BrowserWindow : MetroWindow
|
||||
|
||||
private void UIElement_OnMouseDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
base.DragMove();
|
||||
if (e.LeftButton == MouseButtonState.Pressed)
|
||||
{
|
||||
base.DragMove();
|
||||
}
|
||||
}
|
||||
|
||||
private void BrowserWindow_OnActivated(object sender, EventArgs e)
|
||||
|
@ -144,7 +144,10 @@ namespace Wabbajack
|
||||
|
||||
private void UIElement_OnMouseDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
this.DragMove();
|
||||
if (e.LeftButton == MouseButtonState.Pressed)
|
||||
{
|
||||
this.DragMove();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user