mirror of
https://github.com/KDE/konsole.git
synced 2026-06-11 23:45:09 -04:00
Remove the long broken --force-transparency option
That option is broken for a long time (at least since KDE 4.6.2), yet there is not a single bug report against it. That is a strong evince that option is seldom used. The ideal situation is whenever compositing is available, Konsole supports translucent background out of box without user guidance.
This commit is contained in:
@@ -61,8 +61,7 @@ using namespace Konsole;
|
||||
static bool useTransparency()
|
||||
{
|
||||
const KCmdLineArgs* args = KCmdLineArgs::parsedArgs();
|
||||
const bool compositingAvailable = KWindowSystem::compositingActive() ||
|
||||
args->isSet("force-transparency");
|
||||
const bool compositingAvailable = KWindowSystem::compositingActive();
|
||||
return compositingAvailable && args->isSet("transparency");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user