Skip to content

Commit a9f66b6

Browse files
committed
Plugins::WebBrowser: modify paratmeters
1 parent 5bcf7fb commit a9f66b6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Plugins/WebBrowser/ParameterWebBrowser.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,17 @@ CParameterWebBrowser::CParameterWebBrowser(QObject *parent, const QString &szPre
1919
, m_bPromptPrintFinished(true)
2020
, m_bAutoFillUserAndPassword(false)
2121
{
22+
SetHomeUrl("https://github.com/KangLin");
23+
SetTabUrl("https://github.com/KangLin/RabbitRemoteControl");
2224
//m_szDownloadFolder = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
2325
SetDownloadFolder(QWebEngineProfile::defaultProfile()->downloadPath());
2426
qDebug(log) << "Download folder:" << GetDownloadFolder();
2527
SetSearchEngine("https://cn.bing.com/search?q=%s");
2628
SetSearchRelaceString("%s");
2729
QStringList searchEngines;
28-
searchEngines << "https://cn.bing.com/search?q=%s";
29-
searchEngines << "https://www.google.com/search?q=%s";
30+
searchEngines << "https://www.bing.com/search?q=%s"
31+
<< "https://www.google.com/search?q=%s"
32+
<< "https://www.baidu.com/s?wd=%s";
3033
SetSearchEngineList(searchEngines);
3134
}
3235

0 commit comments

Comments
 (0)