Revision 22b69af by Sergey Sharybin / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Fix compilation error when building from scratch Make sure the DNA offset files is ready at a time bf_windowmanager need it. |
Revision 0758c00 by Sergey Sharybin / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Cleanup: Clang-Tidy, modernize-redundant-void-arg |
Revision c2a329e by Jacques Lucke / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Revision bdaee54 by Jacques Lucke / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Revision 44d358c by Jacques Lucke / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Cleanup: remove unnecessary function |
Revision f87123a by Jacques Lucke / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Revision f2fc2cd by Jacques Lucke / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Refactor: move wmWindowManager .blend I/O to IDTypeInfo callbacks |
Revision af92a39 by Philipp Oeser / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Fix T82364: Widget anim state not updated when deleting channel in Graph Editor So a keyframed e.g. location slider would stay yellow/green even if its corresponding channel was removed. Needs a appropriate notifier so the listeners (e.g. buttons_area_listener, view3d_buttons_region_listener) would cause a redraw. Maniphest Tasks: T82364 Differential Revision: https://developer.blender.org/D9438 |
Revision 49cbb23 by Dalai Felinto / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Fix T82457: Python error when clicking on a tool in the viewport Ths variable was initialized for false, while it was expected to be true. |
Revision 9cb84de by Sergey Sharybin / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Clang Tidy: Expand modernize category Gives an idea of which warnings are affecting Blender code base. |
Revision 53f6991 by Sebastián Barschkis / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Cleanup: Use nullptr everywhere in fluid code Switched from NULL to nullptr. |
Revision 5b696c2 by Philipp Oeser / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Fix T82407: Negative number input gives syntax error for velocities and accelerations Caused by rB45dbc38a8b15. Above commit would place parentheses surrounding a block until the next operator was found. For velocities and accelerations though, the '/' in 'm/s' or 'ft/s' should not be considered an operator. Maniphest Tasks: T82407 Differential Revision: https://developer.blender.org/D9467 |
Revision 080e78d by Sergey Sharybin / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Cleanup: Clang-Tidy, readability-redundant-member-init |
Revision b95a5c2 by Julian Eisel / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Fix T82387: Crash loading file saved with recent master in old versions This fix makes sure new files save `wmWindow.global_areas` under a different name, so old Blender versions don't recognize and 0-initialize it. Since enabling global area writing (ef4aa42ea4ff), loading a file in old Blender versions would cause `wmWindow.global_areas` to be read, because there was already reading code for it and `ScrAreaMap` was in SDNA. However the `ScrArea.global` of the global areas would be NULL, because it was *not* in SDNA (`ScrGlobalAreaData` was excluded). Now, issue is that the code assumes that areas in the global area-map have a valid ScrArea.global pointer. Think this was a mistake in rB5f6c45498c92. We should have cleared all this data on reading, until the global area writing was enabled. Differential Revision: https://developer.blender.org/D9442 Reviewed by: Brecht Van Lommel |
Revision a55a69f by Philipp Oeser / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Fix Outliner editbone selection with 'Sync Selection' When editbones were selected from the Outliner (and they were connected to a parent) with the 'Sync Selection' option turned ON, they could not get duplicated. For duplication to work, the (connected) parent bone's tip also has to be selected [which was not the case when selection is done from the Outliner under above circumstances]. The reason being that armature_duplicate_selected_exec -> ED_armature_edit_sync_selection clears the BONE_ROOTSEL flag if the parent bone's BONE_TIPSEL is not set. Caused by rB71eb65328078 btw. The correct "parent-tip-selection" would actually happen in activation - `tree_element_active_ebone` -- `tree_element_active_ebone__sel` but for 'Sync Selection' this happens [also] in - `outliner_sync_selection_from_outliner` -- `outliner_select_sync_to_edit_bone` which did not do the "flushing" to the parent bone's tip Now use existing dedicated function for this. ref. T82347 Reviewers: Zachman Differential Revision: https://developer.blender.org/D9470 |
Revision 596fea8 by Sergey Sharybin / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Cleanup: Clang-Tidy warnings |
Revision 47e4add by Jeroen Bakker / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Fix compilation error in GHOST ELEM macro isn't available in GHOST library. |
Revision a349943 by Ankit Meel / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Cleanup: Fix the order of info_cfg_option. |
Revision 360faf5 by Aaron Carlisle / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
Cleanup: add missing doxygen group |
Revision 9cf9785 by Aaron Carlisle / Joseph Eagar (sculpt-dev, temp_bmesh_multires, temp_test_sc_keymap) November 7, 2020, 10:53 (GMT) |
|