IJPL-160250 git: disable new actions

GitOrigin-RevId: b959bac8221f0f671ac18bb8fbf415da650cb9c7
This commit is contained in:
Aleksandr Krasilnikov
2024-09-19 15:19:35 +02:00
committed by intellij-monorepo-bot
parent e6e2eb5f03
commit 684fdebe0e

View File

@@ -5,7 +5,6 @@ import com.intellij.dvcs.push.VcsPushAction
import com.intellij.icons.AllIcons
import com.intellij.ide.HelpTooltip
import com.intellij.ide.ui.laf.darcula.ui.ToolbarComboWidgetUiSizes
import com.intellij.idea.AppMode
import com.intellij.openapi.actionSystem.*
import com.intellij.openapi.actionSystem.ex.ActionUtil
import com.intellij.openapi.actionSystem.ex.CustomComponentAction
@@ -153,5 +152,5 @@ private fun Int.shrinkTo99(): @NlsSafe String = if (this > 99) "99+" else this.t
@ApiStatus.Internal
internal object GitMainToolbar {
val showIncomingOutgoing: Boolean // todo: registry, setting or something else
get() = !AppMode.isRemoteDevHost()
get() = false
}