Skip to content

Commit

Permalink
vkconfig: Fix layers path display in layers tab
Browse files Browse the repository at this point in the history
Change-Id: Ie26a85a8a273fc9100b3c2ac55c284930d99dcf0
  • Loading branch information
christophe-lunarg committed Feb 5, 2025
1 parent 14939d7 commit eb55125
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vkconfig_gui/widget_tab_layers_path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ LayersPathWidget::LayersPathWidget(const LayersPathInfo& path_info, LayersPaths
this->buttom_remove->hide();
}

this->setText(format("[%s] %s", GetLabel(layers_path), path_info.path.RelativePath().c_str()).c_str());
this->setToolTip(path_info.path.AbsolutePath().c_str());
this->setText(format("[%s] %s", GetLabel(layers_path), path_info.path.AbsolutePath().c_str()).c_str());

this->connect(this, SIGNAL(toggled(bool)), this, SLOT(on_toggled(bool)));
this->connect(this->buttom_remove, SIGNAL(clicked(bool)), this, SLOT(on_buttom_remove_clicked(bool)));
Expand Down

0 comments on commit eb55125

Please sign in to comment.