for (int w : splitter_->sizes())
splitter_area_width += w;
- // Workaround for when the header needs resizing but the view
- // isn't visible yet and thus splitter_->sizes() returns (0, 0)
- if (splitter_area_width == 0) {
- QTimer::singleShot(50, this, SLOT(on_repeat_splitter_expansion()));
- return;
- }
-
// Make sure the header has enough horizontal space to show all labels fully
QList<int> pane_sizes;
pane_sizes.push_back(header_->extended_size_hint().width());
// resized to their final sizes.
update_layout();
+ if (!settings_restored_)
+ expand_header_to_fit();
+
if (scroll_needs_defaults_) {
set_scroll_default();
scroll_needs_defaults_ = false;
expand_header_to_fit();
}
-void View::on_repeat_splitter_expansion()
-{
- // Don't mess with the header if settings were restored in the meanwhile
- if (!settings_restored_)
- expand_header_to_fit();
-}
-
void View::h_scroll_value_changed(int value)
{
if (updating_scroll_)
private Q_SLOTS:
void on_splitter_moved();
- void on_repeat_splitter_expansion();
void h_scroll_value_changed(int value);
void v_scroll_value_changed();