Skip to main content
Topic: Allow windows instead of tabs? (Read 2814 times)

Allow windows instead of tabs?

Can I configure Otter without tabs?  I have "Reuse current tab" checked in General/Preferences and it works, but I want no tab at all.  Opera has "Allow windows instead of tabs" under "Additional tab options ..."


Re: Allow windows instead of tabs?

Reply #1
You are looking for Open new windows in a new tab instead, just toggle it off.
But apparently it was broken until now, so you will have to compile from source...
Nadszedł już czas, najwyższy czas, nienawiść zniszczyć w sobie.
The time has come, the high time, to destroy hatred in oneself.

Re: Allow windows instead of tabs?

Reply #2

You are looking for Open new windows in a new tab instead, just toggle it off.
But apparently it was broken until now, so you will have to compile from source...


I'd tried that.  Checking or unchecking that option gives me a tab.  I'm running Otter 0.9.05-dev compiled with cmake.

I realize tabbed browsing is popular and should certainly be available.  I'm surely the minority, but to me, a tab just wastes screen space.  Perhaps I'm not understanding the Tools/Preferences ... options?

Re: Allow windows instead of tabs?

Reply #3
@rhubarbpieguy, which way of triggering links are you using?
It works for me for middle click, haven't tried on links with target="_blank" yet.
Nadszedł już czas, najwyższy czas, nienawiść zniszczyć w sobie.
The time has come, the high time, to destroy hatred in oneself.

Re: Allow windows instead of tabs?

Reply #4
Typing a link through F2, or left-clicking a link produces the same result.  To make certain we're on the same page I'm attaching screen shots of Opera and Otter accessing ibm.com.  I've found no combinations in Tools/Preferences ... that omits the tab I see in OtterTab.jpg.


Re: Allow windows instead of tabs?

Reply #5
@rhubarbpieguy, so the only issue for you is hiding tab bar, right?
There is no option to hide it yet, until then you could try this patch:
Code: [Select]
diff --git a/src/ui/MainWindow.cpp b/src/ui/MainWindow.cpp
index acce3bb..9aa1480 100644
--- a/src/ui/MainWindow.cpp
+++ b/src/ui/MainWindow.cpp
@@ -135,7 +135,7 @@ MainWindow::MainWindow(bool isPrivate, const SessionMainWindow &session, QWidget
restoreState(session.state);
}

- m_tabBarToolBarWidget->updateOrientation();
+ m_tabBarToolBarWidget->hide();
}

MainWindow::~MainWindow()

Maybe I'll add such option today, although I'm not convinced that it should be automatically disabled when that option is set (as tabs can be still forced using context menu), but we definitely should have option to hide it when there is only one tab.
Nadszedł już czas, najwyższy czas, nienawiść zniszczyć w sobie.
The time has come, the high time, to destroy hatred in oneself.


Re: Allow windows instead of tabs?

Reply #7
@rhubarbpieguy, no problem, that option landed into master, although it needs more work as part of #31.
Nadszedł już czas, najwyższy czas, nienawiść zniszczyć w sobie.
The time has come, the high time, to destroy hatred in oneself.