f1d10f3c90
ENABLE_GCODE_VIEWER set as default in libslic3r
2020-11-12 14:03:58 +01:00
4eded76136
Custom controls : The width for full_width fields is updated according to the custom control width
...
(thanks to the @supermerill for the mention on it, 6acf6bdf21 )
+ Deleted redundant background color, as mentioned in the #5062
2020-11-12 10:13:16 +01:00
4d102ac8ca
FillAdaptive:
...
1) More accurate trimming of an anchor with another infill line
or by another anchor line.
2) Trimming of very short infill lines, which are not anchored,
by another infill lines.
2020-11-11 16:49:11 +01:00
80e8b5e985
Removed the legacy PreviewData.cpp,hpp
2020-11-11 16:38:51 +01:00
4ad42d6171
WIP - Sequential print visualization using vertical slider in preview (missing travel moves)
2020-11-11 16:22:09 +01:00
0a4ce079e8
escape_ampersand function and changed order of printer names and pictures in config wizard
2020-11-11 16:08:27 +01:00
4f85a42830
Follow-up of bb74d2da5b and 7b2aca0159 -> Removed inclusions of GCode/Analyzer.hpp and GCodeTimeEstimator.hpp
2020-11-11 15:41:48 +01:00
a2b915af0f
Fixed of #5081
...
Width of sub-label is calculated by using of GetTextExtent() instead of PaintDC->GetMultiLineTextExtent, because of PaintDC is not OK sometimes.
For example on GTK3 PaintDC->IsOk() only, when it's using in a native paint event
see https://github.com/wxWidgets/wxWidgets/blob/master/src/gtk/dc.cpp , line 346
2020-11-11 12:04:15 +01:00
26836db629
FillAdaptive: Handling of a special case when the infill lines
...
touch at their ends.
2020-11-11 11:51:26 +01:00
decda76344
AdaptiveInfill:
...
1) Shortening the anchor lines when touching another infill line
to avoid over extrusion.
2) Reduction of the Intersection structure complexity by referencing
the source lines.
2020-11-10 15:54:32 +01:00
89df9c1038
Improvement of AdaptiveFill:
...
1) Merging of collinear infill lines separated by a thin gap created
by trimming with the boundary polygon.
2) Sorting of the T-joints separately to the left / right of the common
line.
3) Trimming self intersections of the anchor lines.
4) Dropping of very short segments, not anchoring short segments.
2020-11-10 13:56:12 +01:00
e20d8f1623
MM print : Fixed re-scaling of the Extruders column in the Object list
2020-11-10 11:06:33 +01:00
422ad1c5bf
Callback stored at std::function for notification hyperlink. Notification progress bar draft.
2020-11-10 09:22:47 +01:00
3163f506c2
imgui README.md prev commit hash
2020-11-09 15:15:30 +01:00
870aba8d15
Large notification buttons and icons
2020-11-09 15:15:30 +01:00
a72fb79f72
#5098 - Fixed no preview after language change
2020-11-09 14:27:00 +01:00
2618992c8b
Fix of an ASAN crash on app close (Linux)
2020-11-09 14:00:58 +01:00
bf12c7cb8c
GCode Viewer - Fixed color print visualization for gcode containing multiple extruders
2020-11-09 13:06:20 +01:00
479d4b70f2
GCode Viewer - Show print/printer/filament settings names in legend
2020-11-09 08:41:14 +01:00
517477f0dd
Fix of the previous Adaptive Cubic infill refactoring
...
plus couple of fixes of the old logic.
2020-11-06 16:24:15 +01:00
8448d1a1dc
OSX specific : Set top border for the mode buttons, when settings pages has new layouts
...
(when tabs bar is hidden)
+ Code cleaning for OG_CustomCtrl (delete unused input parameter from the draw_blinking_bmp())
2020-11-06 16:24:03 +01:00
1492bc9cd5
Localization : Next phrases corrections and update for PrusaSlicer.pot
2020-11-06 12:14:19 +01:00
8f31f404a3
Disabled tech ENABLE_CTRL_M_ON_WINDOWS
2020-11-06 11:55:57 +01:00
277376ee09
Enabled tech ENABLE_CTRL_M_ON_WINDOWS to produce an experimental build
2020-11-06 11:42:54 +01:00
f1b5142daa
Follow-up of 944e760722 -> Removed debug output line
2020-11-06 11:20:47 +01:00
41ef6cf15c
Disabled tech ENABLE_CTRL_M_ON_WINDOWS
2020-11-06 11:09:47 +01:00
411159b5e7
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer
2020-11-06 11:03:56 +01:00
944e760722
#4892 - Follow-up of 30481e1ea8 -> Fixed behavior of imgui dialog for settings of 3DConnexion devices (CTRL+M) on Windows
2020-11-06 11:03:41 +01:00
2a98aa113c
Remove unused RotoptimzeWindow imgui dialog.
...
It might be added in the future in a more polished form.
2020-11-06 10:06:05 +01:00
139b58a6f2
Adaptive Cubic infill with anchors: Trimming anchors with not only
...
with a neighbor T-joint line, but also with other crossing lines.
2020-11-06 08:56:53 +01:00
a131217ada
Added missed parent for the SysInfoDialog
...
see f0a339758b
2020-11-05 22:19:48 +01:00
ed2f03ec79
Localization:
...
Some phrases are corrected in the code
The POT-file is updated
2020-11-05 22:17:49 +01:00
f0a339758b
Fixed a Dialog position under OSX
...
Always set parent for the Dialog, if we want to see the Dialog in the same display as a parent.
Dialog will be shown in the primary monitor otherwise.
+ fixed a draw of the canvas legend when we move application between Retina and non-Retina displays
2020-11-05 11:53:16 -08:00
e9295e268a
config wizard printer selection - changed vertical spacing
2020-11-05 17:43:40 +01:00
239d588c5d
1) Implemented anchoring of infill lines to perimeters with length
...
limited anchors, while before a full perimeter segment was always
taken if possible.
2) Adapted the line infills (grid, stars, triangles, cubic) to 1).
This also solves a long standing issue of these infills producing
anchors for each sweep direction independently, thus possibly
overlapping and overextruding, which was quite detrimental
in narrow areas.
3) Refactored cubic adaptive infill anchroing algorithm
for performance and clarity.
2020-11-05 17:32:40 +01:00
8491872fb7
#5079 - Fixed GCode Viewer changing files modified date on Windows
2020-11-05 14:02:43 +01:00
6d56e60091
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer
2020-11-05 11:02:08 +01:00
aea09b8347
#5072 - Added color icon into 'Print' items in legend for gcode color print visualization
2020-11-05 11:01:54 +01:00
2ec5a0d46c
Fixed visualization of gcode toolpaths for spiral vase mode
2020-11-05 11:00:04 +01:00
ea5fdcd7b1
Removed cog icon from the horizontal slider.
...
+ Shortcut "Shift+G" works from the Preview canvas now (not just from the focused slider as before)
2020-11-04 07:30:33 -08:00
5d16c5f466
imgui README.md updated
2020-11-04 13:48:30 +01:00
747fcb1d07
Follow-up of d2e5be89e3 -> Fixed processing of color print, pause print and custom gcode tags
2020-11-04 13:33:27 +01:00
11ee0cc2cc
Hot-fix for my last commit ( d576c029bd)
2020-11-04 13:14:57 +01:00
ab6af3ff68
Fix of #5058 (failing build with wx3.0)
2020-11-04 11:58:45 +01:00
d576c029bd
CustomCtrl : fixed correction of the CustomCtrl's line height in respect to the height of the inside controls (fields or widgets)
...
Issue was appeared on the Ubuntu 20.04
2020-11-04 10:17:32 +01:00
3ca3a544a8
New Export Finished notification showing path and opening containing folder. Fix of #4917 . Fixed wrongly grayed eject button in File menu. Hopefully fix of ctrl shortcut of tooltips at sidebar.
2020-11-04 09:29:08 +01:00
4d7b5d4451
"Sequential slider applied only to top layer" parameter from the Preferences is applied just for the horizontal slider now
2020-11-03 15:45:23 +01:00
b84efca01e
Degree sign in FDM supports gizmo dialog:
...
The sign is used insted of 'deg' and it was moved into the slider,
to make it consistent with sliders in SLA gizmos.
2020-11-03 15:15:09 +01:00
414fdaefc5
Merge remote-tracking branch 'remotes/origin/master' into lh_adaptive_infill_hooks
2020-11-03 15:07:38 +01:00
1c1b1bc019
Custom control : Fixed un-hovering for labels, which work as a hyperlinks
2020-11-03 13:40:49 +01:00