FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

[22780] Ensure the compositorType property can be set to "none" by livecodepanos · Pull Request #7378 · livecode/livecode · GitHub

This repository was archived by the owner on Aug 31, 2021. It is now read-only.
/ livecode Public archive
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .cpp  (1) .md  (1) All 2 file types selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
1 change: 1 addition & 0 deletions docs/notes/bugfix-22780.md
This file contains hidden or 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
@@ -0,0 +1 @@
# Ensure no error is thrown when setting the compositorType property to "none"
2 changes: 1 addition & 1 deletion engine/src/exec-interface-stack.cpp
This file contains hidden or 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
Expand Up @@ -93,7 +93,7 @@ static MCExecEnumTypeInfo _kMCInterfaceCharsetTypeInfo =
static MCExecEnumTypeElementInfo _kMCInterfaceCompositorTypeElementInfo[] =
{
{ "", kMCTileCacheCompositorNone, false },
{ "none", kMCTileCacheCompositorNone, true },
{ "none", kMCTileCacheCompositorNone, false },
{ "Software", kMCTileCacheCompositorSoftware, false },
{ "CoreGraphics", kMCTileCacheCompositorCoreGraphics, false },
{ "opengl", kMCTileCacheCompositorOpenGL, false },
Expand Down

Back | FazBrowse Home | New Git URL