Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release-1.1.2' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
x64Eddie committed Oct 5, 2020
2 parents 4bb5018 + 9c39129 commit 644f057
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions lib/controllers/macbg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import subprocess

SCRIPT = """/usr/bin/osascript<<END
tell application "Finder"
set desktop picture to POSIX file "%s"
end tell
END"""

def set_desktop_background(filename):
subprocess.Popen(SCRIPT%"/Users/aravind/Pictures/_DSC0237.jpg", shell=True)
2 changes: 1 addition & 1 deletion lib/interpret_and_optimize/entities/layouts/stack.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class PBIntermediateStackLayout extends PBLayoutIntermediateNode {
List<PBIntermediateNode> children, PBContext currentContext) {
/// The width of this stack must be the full width of the Scaffold or Artboard. As discussed, at some point we can change this but for now, this makes the most sense.
var stack =
PBIntermediateStackLayout(Uuid().v4(), currentContext: currentContext);
PBIntermediateStackLayout(UUID: Uuid().v4(), currentContext: currentContext);
stack.prototypeNode = prototypeNode;
children.forEach((child) => stack.addChild(child));
return stack;
Expand Down
2 changes: 1 addition & 1 deletion pb-scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ stop_spin(){
}


start_spin "Installing Para-beac core and its dependencies"
start_spin "Installing Parabeac-core and its dependencies"
tput civis # stop mouse pointer from blinking
cd ../SketchAssetConverter && npm i
pub get
Expand Down

0 comments on commit 644f057

Please sign in to comment.