File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 64
64
] ) ++ pkgs . lib . optionals pkgs . stdenv . isDarwin ( with pkgs ; [
65
65
libiconv
66
66
darwin . apple_sdk . frameworks . Security
67
+ darwin . apple_sdk . frameworks . SystemConfiguration
67
68
] ) ;
68
69
69
70
LD_LIBRARY_PATH = "${ pkgs . stdenv . cc . cc . lib } /lib" ;
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ impl ThreeMfSlicerTrait for Slicer {
129
129
// Find the prusaslicer executable path on macOS.
130
130
#[ cfg( target_os = "macos" ) ]
131
131
fn find_prusa_slicer ( ) -> Result < PathBuf > {
132
- let app_path = PathBuf :: from ( "/Applications/PrusaSlicer.app/Contents/MacOS/PrusaSlicer" ) ;
132
+ let app_path = PathBuf :: from ( "/Applications/Original Prusa Drivers/ PrusaSlicer.app/Contents/MacOS/PrusaSlicer" ) ;
133
133
if app_path. exists ( ) {
134
134
Ok ( app_path)
135
135
} else {
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ impl ControlTrait for Usb {
137
137
}
138
138
139
139
async fn state ( & self ) -> Result < MachineState > {
140
- Ok ( MachineState :: Unknown )
140
+ Ok ( MachineState :: Idle )
141
141
}
142
142
143
143
async fn progress ( & self ) -> Result < Option < f64 > > {
You can’t perform that action at this time.
0 commit comments