Spreadsheet: show number of filtered rows only when necessary

This commit is contained in:
Jacques Lucke 2021-03-15 16:10:23 +01:00
parent c82f65b096
commit e7f59e6f94
1 changed files with 5 additions and 2 deletions

View File

@ -272,8 +272,11 @@ static void spreadsheet_footer_region_draw(const bContext *C, ARegion *region)
SpaceSpreadsheet *sspreadsheet = CTX_wm_space_spreadsheet(C);
SpaceSpreadsheet_Runtime *runtime = sspreadsheet->runtime;
std::stringstream ss;
ss << "Rows: " << runtime->visible_rows << " / " << runtime->tot_rows
<< " | Columns: " << runtime->tot_columns;
ss << "Rows: ";
if (runtime->visible_rows != runtime->tot_rows) {
ss << runtime->visible_rows << " / ";
}
ss << runtime->tot_rows << " | Columns: " << runtime->tot_columns;
std::string stats_str = ss.str();
UI_ThemeClearColor(TH_BACK);