-
-
Notifications
You must be signed in to change notification settings - Fork 968
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfc67dd
commit 4308fad
Showing
1 changed file
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
From c0d9541c8c2d729dd7c439a16ae34ffd7f292abc Mon Sep 17 00:00:00 2001 | ||
From 7eafe511eb7b1a234c5b956b45deb4865db75733 Mon Sep 17 00:00:00 2001 | ||
From: Ocraftyone <[email protected]> | ||
Date: Sat, 4 Nov 2023 06:40:22 -0400 | ||
Date: Thu, 30 Nov 2023 03:25:54 -0500 | ||
Subject: [PATCH] patch v3.2.1 for OrcaSlicer | ||
|
||
--- | ||
|
@@ -15,14 +15,15 @@ Subject: [PATCH] patch v3.2.1 for OrcaSlicer | |
src/common/datavcmn.cpp | 6 ++- | ||
src/common/dcbufcmn.cpp | 6 +++ | ||
src/common/gdicmn.cpp | 14 +++++++ | ||
src/common/image.cpp | 6 +-- | ||
src/generic/grid.cpp | 50 ++++++++++++++++++++----- | ||
src/msw/bmpcbox.cpp | 9 ++++- | ||
src/msw/font.cpp | 14 +++---- | ||
src/msw/menuitem.cpp | 2 + | ||
src/msw/window.cpp | 52 +++++++++++++++++--------- | ||
src/osx/cocoa/dataview.mm | 26 +++++++++++-- | ||
src/osx/cocoa/settings.mm | 6 +-- | ||
18 files changed, 177 insertions(+), 53 deletions(-) | ||
19 files changed, 180 insertions(+), 56 deletions(-) | ||
|
||
diff --git a/build/cmake/lib/webview/CMakeLists.txt b/build/cmake/lib/webview/CMakeLists.txt | ||
index 085381d785..62146abc04 100644 | ||
|
@@ -257,6 +258,25 @@ index db8a01f961..162c1ce2dc 100644 | |
void wxClientDisplayRect(int *x, int *y, int *width, int *height) | ||
{ | ||
const wxRect rect = wxGetClientDisplayRect(); | ||
diff --git a/src/common/image.cpp b/src/common/image.cpp | ||
index 19fe34ec91..a449b60930 100644 | ||
--- a/src/common/image.cpp | ||
+++ b/src/common/image.cpp | ||
@@ -390,11 +390,11 @@ wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const | ||
unsigned char red = pixel[0] ; | ||
unsigned char green = pixel[1] ; | ||
unsigned char blue = pixel[2] ; | ||
- unsigned char alpha = 255 ; | ||
- if ( source_alpha ) | ||
- alpha = *(source_alpha + y_offset + x * xFactor + x1) ; | ||
if ( !hasMask || red != maskRed || green != maskGreen || blue != maskBlue ) | ||
{ | ||
+ unsigned char alpha = 255 ; | ||
+ if ( source_alpha ) | ||
+ alpha = *(source_alpha + y_offset + x * xFactor + x1) ; | ||
if ( alpha > 0 ) | ||
{ | ||
avgRed += red ; | ||
diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp | ||
index ed3d988994..d71cda122d 100644 | ||
--- a/src/generic/grid.cpp | ||
|
@@ -554,7 +574,7 @@ index c529a4fa3b..7e547c64df 100644 | |
|
||
return ::GetSystemMetrics(nIndex); | ||
diff --git a/src/osx/cocoa/dataview.mm b/src/osx/cocoa/dataview.mm | ||
index f188e61089..3d3159ce9d 100644 | ||
index f188e61089..7b867002d1 100644 | ||
--- a/src/osx/cocoa/dataview.mm | ||
+++ b/src/osx/cocoa/dataview.mm | ||
@@ -1604,6 +1604,15 @@ outlineView:(NSOutlineView*)outlineView | ||
|