Adjusted min width of hex viewer scene to prevent overlapping when the side panel is visible

(this addresses a regression from a previous change, decreasing the min width of the memory inspection window)
This commit is contained in:
Nav
2023-03-19 01:37:19 +00:00
parent 7998632eed
commit dba7d83c4f

View File

@@ -128,7 +128,7 @@ namespace Bloom::Widgets
*
* See https://bugreports.qt.io/browse/QTBUG-99189 for more on this.
*/
return std::max(this->parent->viewport()->width(), 400) - 2;
return std::max(this->parent->viewport()->width(), 200) - 2;
}
void refreshItemPositionIndices();