Skip to content

Commit

Permalink
Add the profiles from Paul.
Browse files Browse the repository at this point in the history
  • Loading branch information
daid committed Dec 22, 2014
1 parent eed028d commit 2e8e2e8
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Cura/gui/mainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,14 @@ def OnSimpleSwitch(self, e):

def OnNormalSwitch(self, e):
profile.putPreference('startMode', 'Normal')
dlg = wx.MessageDialog(self, _("Copy the settings from quickprint to your full settings?\n(This will overwrite any full setting modifications you have)"), _("Profile copy"), wx.YES_NO | wx.ICON_QUESTION)
result = dlg.ShowModal() == wx.ID_YES
dlg.Destroy()
if result:
profile.resetProfile()
for k, v in self.simpleSettingsPanel.getSettingOverrides().items():
profile.putProfileSetting(k, v)
self.updateProfileToAllControls()
self.updateSliceMode()

def OnDefaultMarlinFirmware(self, e):
Expand Down
8 changes: 8 additions & 0 deletions resources/quickprint/profiles/1_low.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ name = Low quality

[profile]
layer_height = 0.15
wall_thickness = 1
fill_density = 10
bottom_layer_speed = 30
infill_speed = 100
solidarea_speed = 30
inset0_speed = 40
insetx_speed = 80
cool_min_layer_time = 3
7 changes: 6 additions & 1 deletion resources/quickprint/profiles/2_normal.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@
name = Normal quality

[profile]
layer_height = 0.10
layer_height = 0.1
infill_speed = 100
solidarea_speed = 15
inset0_speed = 30
insetx_speed = 80

5 changes: 5 additions & 0 deletions resources/quickprint/profiles/3_high.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ name = High quality

[profile]
layer_height = 0.06
infill_speed = 100
solidarea_speed = 15
inset0_speed = 30
insetx_speed = 80

5 changes: 5 additions & 0 deletions resources/quickprint/profiles/4_ulti.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ name = Ulti quality

[profile]
layer_height = 0.04
infill_speed = 100
solidarea_speed = 15
inset0_speed = 30
insetx_speed = 80

0 comments on commit 2e8e2e8

Please sign in to comment.