summaryrefslogtreecommitdiff
path: root/platform/platform-impl/src/com/intellij/codeInsight/daemon/impl/HintUtil.kt
blob: 661d9bc74cc3f77df189f1016e6dbc8f28cb80fd (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.codeInsight.daemon.impl

import com.intellij.openapi.editor.Editor
import kotlin.math.max

object HintUtil {
  fun getSize(editor: Editor): Float = max(1f, editor.colorsScheme.editorFontSize2D - 1f)
}