Fix T81227: Modifier menu and text switch places

Logic was incorrect, mistake in f3b8792b96.

Updated comment to make intent more clear.
This commit is contained in:
Julian Eisel 2020-11-17 15:25:05 +01:00
parent c12664a37f
commit fd78f8699e
Notes: blender-bot 2023-02-14 10:37:49 +01:00
Referenced by issue #81227, Modifier menu and text switch places
1 changed files with 3 additions and 3 deletions

View File

@ -1634,12 +1634,12 @@ static int find_highest_panel(const void *a, const void *b)
/* Stick uppermost header-less panels to the top of the region -
* prevent them from being sorted (multiple header-less panels have to be sorted though). */
if (panel_a->type->flag & PANEL_TYPE_NO_HEADER && panel_b->type->flag & PANEL_TYPE_NO_HEADER) {
/* Skip and check for `ofsy` and #Panel.sortorder below. */
/* Pass the no-header checks and check for `ofsy` and #Panel.sortorder below. */
}
if (panel_a->type->flag & PANEL_TYPE_NO_HEADER) {
else if (panel_a->type->flag & PANEL_TYPE_NO_HEADER) {
return -1;
}
if (panel_b->type->flag & PANEL_TYPE_NO_HEADER) {
else if (panel_b->type->flag & PANEL_TYPE_NO_HEADER) {
return 1;
}