Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-04-12 10:14:41 +0300
committerJacques Lucke <jacques@blender.org>2021-04-12 10:14:41 +0300
commit1a4d0fa72d83bf6c7413d70172766801976c1671 (patch)
tree7553d996d043712a69698e7c28384dd4fe21a0d9 /source/blender/editors/space_spreadsheet/space_spreadsheet.cc
parent59f49072d06859f69e9f6e381f5f7f168ee74d24 (diff)
Spreadsheet: add spreadsheet width unit
This also fixes the issue that the width of the "Name" column when viewing instances does not resize correctly. Differential Revision: https://developer.blender.org/D10926
Diffstat (limited to 'source/blender/editors/space_spreadsheet/space_spreadsheet.cc')
-rw-r--r--source/blender/editors/space_spreadsheet/space_spreadsheet.cc14
1 files changed, 9 insertions, 5 deletions
diff --git a/source/blender/editors/space_spreadsheet/space_spreadsheet.cc b/source/blender/editors/space_spreadsheet/space_spreadsheet.cc
index d34b625293c..9d79e7abcc5 100644
--- a/source/blender/editors/space_spreadsheet/space_spreadsheet.cc
+++ b/source/blender/editors/space_spreadsheet/space_spreadsheet.cc
@@ -175,14 +175,18 @@ static std::unique_ptr<DataSource> get_data_source(const bContext *C)
static float get_column_width(const ColumnValues &values)
{
if (values.default_width > 0) {
- return values.default_width * UI_UNIT_X;
+ return values.default_width;
}
const int fontid = UI_style_get()->widget.uifont_id;
- const int widget_points = UI_style_get_dpi()->widget.points;
- BLF_size(fontid, widget_points * U.pixelsize, U.dpi);
+ BLF_size(fontid, UI_DEFAULT_TEXT_POINTS, U.dpi);
const StringRefNull name = values.name();
const float name_width = BLF_width(fontid, name.data(), name.size());
- return std::max<float>(name_width + UI_UNIT_X, 3 * UI_UNIT_X);
+ return std::max<float>(name_width / UI_UNIT_X + 1.0f, 3.0f);
+}
+
+static float get_column_width_in_pixels(const ColumnValues &values)
+{
+ return get_column_width(values) * SPREADSHEET_WIDTH_UNIT;
}
static int get_index_column_width(const int tot_rows)
@@ -239,7 +243,7 @@ static void spreadsheet_main_region_draw(const bContext *C, ARegion *region)
/* Should have been removed before if it does not exist anymore. */
BLI_assert(values_ptr);
const ColumnValues *values = scope.add(std::move(values_ptr), __func__);
- const int width = get_column_width(*values);
+ const int width = get_column_width_in_pixels(*values);
spreadsheet_layout.columns.append({values, width});
}