Commit Graph

31408 Commits

Author SHA1 Message Date
luzpaz
fdca2d49f7 Arch: lint bad indentation, superfluous formatting (#9310) 2023-04-19 09:40:16 +02:00
Chris Hennes
a5d187c24d Tools: Apply Black to updatecrowdin.py 2023-04-18 22:41:19 -05:00
Chris Hennes
fb6ea28fd5 Tools: Add App to CrowdIn upload 2023-04-18 22:37:23 -05:00
Chris Hennes
4a01b5cf6b Merge pull request #9299 from chennes/translateGeometryCheckResults
Part: translate geometry check results
2023-04-18 10:46:24 -05:00
Chris Hennes
5981d2ef54 Merge pull request #9305 from chennes/toolbarMenuTranslationStrings
GUI: Add missing toolbar translation strings
2023-04-18 10:45:50 -05:00
Chris Hennes
b7cc1effd7 Merge pull request #9292 from chennes/femGuiToolsTranslation
FEM: Fix translation of long phrase
2023-04-18 09:32:26 -05:00
Chris Hennes
bc23af1067 Merge pull request #9302 from ronnystandtke/i18n_command_body
i18n for CommandBody
2023-04-18 09:29:17 -05:00
luzpaz
e7ced1f7cb Arch: linting multiple imports on one line (#9281) 2023-04-18 16:23:44 +02:00
Chris Hennes
aeb059fc7a GUI: Add missing toolbar translation strings 2023-04-18 09:21:19 -05:00
Artyom V. Poptsov
ed343317d4 ArchPanel: Remove "utf8_decode=True" from "translate" calls (#9279)
* src/Mod/Arch/ArchPanel.py: Remove deprecated "utf8_decode=True" from
  "translate" calls.
2023-04-18 16:18:01 +02:00
luzpaz
69d03ffc79 Arch: fix linting for ArchStairs.py (#9276)
* Arch: fix linting for ArchStairs.py

Fix bad indentation

* Arch: fix linting for ArchStairs.py (cont.)

Fixed long line, superflous parathesis, and formatting
2023-04-18 16:15:35 +02:00
Ronny Standtke
ff324c9df7 fixed typo 2023-04-18 12:24:21 +02:00
Ronny Standtke
726e786493 added i18n for new body labels 2023-04-18 12:23:37 +02:00
Chris Hennes
059b9eddce Merge pull request #8982 from ConnorWorrell/SpinboxFractionInputForMerge
[GUI] QuantitySpinBox: more intuitive parsing
2023-04-17 21:47:48 -05:00
Chris Hennes
a41912946d Merge pull request #9291 from chennes/translateToolRemoveBOM
Translate tool remove BOM
2023-04-17 21:33:17 -05:00
Chris Hennes
42f062fe0d Merge pull request #9284 from dodomorandi/fix-event-type-ub
Fix wrong downcasting of QEvent
2023-04-17 21:32:34 -05:00
wandererfan
3d0d65b41c [TD]make scrubbing count a property of view 2023-04-17 20:43:20 -04:00
Edoardo Morandi
e6323b9bc8 fix: UB by erroneous event downcasting
When an event type is `QEvent::Wheel`, the event type is `QWheelEvent`,
which is not a `QMouseEvent`. This caused a undefined behavior that can
be cached by ubsan.
2023-04-17 23:42:15 +02:00
Chris Hennes
73c706fb1b Merge pull request #9298 from Ondsel-Development/fix_wb_autoload
Pref: Wb: disabling wb do not disable auto-load.
2023-04-17 16:13:37 -05:00
Chris Hennes
9f2094c86e Part: translate geometry check results 2023-04-17 16:06:15 -05:00
Paddle
77073a9710 Pref: Wb: disabling wb do not disable auto-load. 2023-04-17 21:37:46 +02:00
Chris Hennes
04e0fdd012 Merge pull request #9199 from Ondsel-Development/image_task
Image: Merge taskboxes into one 'Image plane Settings'.
2023-04-17 14:24:35 -05:00
Chris Hennes
6d099f0b65 Merge pull request #9290 from chennes/translateSoFCColorText
Gui: Add translations for color bar labels
2023-04-17 12:25:16 -05:00
Paddle
b6372e376f TaskImage: Fix segfault when doc closed before taskview is dismissed. 2023-04-17 16:03:11 +02:00
Paddle
a69ac4717c TaskImage: Remove 'outside picture' mode. 2023-04-17 15:10:13 +02:00
Chris Hennes
ee47e614e1 Gui: Fix translation of Export error dialog 2023-04-16 21:27:28 -05:00
Chris Hennes
5cb6e0733f FEM: Fix translation of long phrase
The lupdate tool does not correctly parse Python string concatenation. Also, .format() calls should be made on the string returned from tr(), not on the string going into it.
2023-04-16 21:13:54 -05:00
Chris Hennes
7e6f554401 Gui: Add translations for color bar labels 2023-04-16 20:58:42 -05:00
Chris Hennes
2dabffbf6c Tools: Apply Black formatter to updatets.py 2023-04-16 20:54:32 -05:00
Chris Hennes
e363a27c97 Tools/updatets.py: clean up file formatting issues. 2023-04-16 20:54:22 -05:00
wandererfan
ffd3f9b1a2 [TD]fix unwanted inversion in edge scrubbing 2023-04-16 16:34:09 -04:00
Chris Hennes
d94f864fae Merge pull request #9287 from xtemp09/gui-fix2
[GUI] Setting initial color of QColorDialog
2023-04-16 13:19:09 -05:00
Chris Hennes
918007af56 Merge pull request #9286 from dodomorandi/fix-uninit-variable
Fix uninitialized member variable
2023-04-16 13:17:16 -05:00
sliptonic
3801c6010c Merge pull request #9167 from nik570/Fangling_postprocessor
Path: Added post processor for Fangling plasma cutter
2023-04-16 12:23:15 -05:00
Nicklas SB Karlsson
2a7b499ab3 Co-authored-by: Benjamin Bræstrup Sayoc <benj5378@outlook.com> code cleanup. 2023-04-16 18:47:53 +02:00
xtemp09
d32d699e1c Setting initial color of QColorDialog
This commit fixes issue #7322
2023-04-16 13:56:19 +07:00
Edoardo Morandi
3a6464d3ba fix: uninitialized class variable
This specific boolean variable could be used uninitialized. Assigning it
a default value is cheap and it avoids the issue.
2023-04-16 00:59:16 +02:00
ronnystandtke
144b2158dd Removed Image workbench from directories list (#9275) 2023-04-15 15:06:05 -05:00
wandererfan
3355e70990 [TD]remove overlapping edges from HLR 2023-04-15 15:24:28 -04:00
wandererfan
52754ffde5 [TD]Add preference for overlapping edge cleaning 2023-04-15 15:24:28 -04:00
sliptonic
b85e990807 Merge pull request #9165 from morganrallen/path_prop_enum_init_reorder
Path: set enumeration default properties after `.initOperation`
2023-04-15 13:27:50 -05:00
Chris Hennes
225941ea71 Merge pull request #9274 from xtemp09/mem-fix2
Fix the typo in #9267
2023-04-15 11:39:53 -05:00
sliptonic
2d92611f97 Merge pull request #8459 from cam72cam/gcode_apply_gcode_placement
Path: Apply Placement to simulated/exported GCode
2023-04-15 10:43:37 -05:00
Benjamin Bræstrup Sayoc
ddff39dbac [TechDraw] Add customizability for dimension line spacing 2023-04-15 10:20:38 -04:00
xtemp09
8f517ec5c7 Fix the typo in #9267 2023-04-15 15:41:33 +07:00
Chris Hennes
ec4a963f57 Merge pull request #9260 from Ondsel-Development/pref_general
Pref: general: Re-organize page.
2023-04-14 20:31:36 -05:00
Chris Hennes
4fdc843723 Merge pull request #9259 from ronnystandtke/multiselect_hide_in_tree
added support for multi selection when toggling visibility in tree view
2023-04-14 20:26:41 -05:00
Chris Hennes
fd74dd04e5 Merge pull request #9267 from xtemp09/mem-fix
Fix memory leak when loading a font file
2023-04-14 15:41:21 -05:00
xtemp09
c03d8a058f Fix memory leak when loading a font file
- FreeCAD allocated memory to load a font file, but did not deallocate.
std::unique_ptr fixed it.
- Removed unnecessary includes
2023-04-15 01:42:19 +07:00
Nicklas SB Karlsson
5b82807fe4 Co-authored-by: Benjamin Bræstrup Sayoc <benj5378@outlook.com> 2023-04-14 18:25:07 +02:00