mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-28 17:36:36 +00:00
Return a minimum size hint for pipeline flowcharts
This commit is contained in:
@@ -83,6 +83,11 @@ int PipelineFlowChart::selectedStage()
|
||||
return m_SelectedStage;
|
||||
}
|
||||
|
||||
QSize PipelineFlowChart::minimumSizeHint() const
|
||||
{
|
||||
return QSize(0, 30);
|
||||
}
|
||||
|
||||
QSize PipelineFlowChart::sizeHint() const
|
||||
{
|
||||
return QSize(0, 60);
|
||||
|
||||
@@ -45,6 +45,7 @@ public:
|
||||
void setSelectedStage(int idx);
|
||||
int selectedStage();
|
||||
|
||||
QSize minimumSizeHint() const override;
|
||||
QSize sizeHint() const override;
|
||||
|
||||
signals:
|
||||
|
||||
Reference in New Issue
Block a user