Fixed #106 (Search & replace help page enhancements)

This commit is contained in:
Matthias Koefferlein 2018-03-31 13:39:35 +02:00
parent 21e2af2a97
commit a7446dd0dc
2 changed files with 5 additions and 1 deletions

View File

@ -50,6 +50,10 @@ HelpDialog::HelpDialog (QWidget *parent, bool modal)
mp_browser_panel = new lay::BrowserPanel (this);
help_layout->addWidget (mp_browser_panel);
QSizePolicy sp = mp_browser_panel->sizePolicy ();
sp.setVerticalStretch (1);
mp_browser_panel->setSizePolicy (sp);
if (modal) {
QFrame *button_frame = new QFrame (this);
help_layout->addWidget (button_frame);

View File

@ -4793,7 +4793,7 @@ MainWindow::cm_show_assistant ()
void
MainWindow::show_help (const QString &url)
{
show_assistant_url (tl::to_string (url), true);
show_assistant_url (tl::to_string (url), false);
}
void