19 lines
397 B
QML
19 lines
397 B
QML
// SPDX-FileCopyrightText: 2026, Shaun Reed <shaunrd0@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: GNU General Public License v3.0 or later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls.Basic
|
|
|
|
import clide.module 1.0
|
|
|
|
Menu {
|
|
background: Rectangle {
|
|
border.color: RustColors.hovered
|
|
border.width: 10
|
|
color: RustColors.menubar
|
|
implicitWidth: 100
|
|
radius: 5
|
|
}
|
|
}
|