Use gtk_show_uri, fixes #5578, thanks to @Floessie for the patch

This commit is contained in:
Ingo Weyrich 2019-12-28 13:05:18 +01:00
parent 898527732b
commit a62b0f8040

View File

@ -921,7 +921,8 @@ void RTWindow::writeToolExpandedStatus (std::vector<int> &tpOpen)
void RTWindow::showRawPedia()
{
show_uri("https://rawpedia.rawtherapee.com/", GDK_CURRENT_TIME);
GError* gerror = nullptr;
gtk_show_uri(nullptr, "https://rawpedia.rawtherapee.com/", GDK_CURRENT_TIME, &gerror);
}
void RTWindow::showICCProfileCreator ()