diff options
Diffstat (limited to 'src/dillo.cc')
-rw-r--r-- | src/dillo.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/dillo.cc b/src/dillo.cc index ff450fe5..e6aaf915 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -410,11 +410,7 @@ int main(int argc, char **argv) if (idx == argc) { /* No URLs/files on cmdline. Send startup screen */ - if (dStrAsciiCasecmp(URL_SCHEME(prefs.start_page), "about") == 0 && - strcmp(URL_PATH(prefs.start_page), "blank") == 0) - a_UIcmd_open_url(bw, NULL); - else - a_UIcmd_open_url(bw, prefs.start_page); + a_UIcmd_open_url(bw, prefs.start_page); } else { for (int i = idx; i < argc; i++) { DilloUrl *start_url = makeStartUrl(argv[i], local); |