Skip to content

Commit

Permalink
Merge pull request #6 from naveen-c/xcode12
Browse files Browse the repository at this point in the history
Texture upgrade support
  • Loading branch information
naveen-c authored Sep 17, 2020
2 parents 4f4619e + 7e4992a commit d464431
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Nifty.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'Nifty'
s.version = '0.1.5'
s.version = '0.1.6'
s.summary = 'A short description of Nifty.'

# This description is used to generate tags and improve search results.
Expand Down
6 changes: 3 additions & 3 deletions Nifty/Classes/NTDisplay/Nodes/NTNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ extension NTNode {
*/
open var interfaceState: UInt {
get {
return self._asNode.interfaceState.rawValue
return UInt(self._asNode.interfaceState.rawValue)
}
}

Expand Down Expand Up @@ -1004,10 +1004,10 @@ extension NTNode {
open var edgeAntialiasingMask: UInt32 // default==all values from CAEdgeAntialiasingMask
{
get {
return self._asNode.edgeAntialiasingMask
return self._asNode.edgeAntialiasingMask.rawValue
}
set {
self._asNode.edgeAntialiasingMask = newValue
self._asNode.edgeAntialiasingMask = CAEdgeAntialiasingMask(rawValue: newValue)
}
}

Expand Down

0 comments on commit d464431

Please sign in to comment.