Fixed an issue that would cause the scroll direction to be inverted on secondary monitors. (#683)

* Fixed an issue that would cause the scroll direction to be inverted on secondary monitors.

* Update import paths and tsconfig.
This commit is contained in:
Jas Singh
2024-12-31 03:20:47 -08:00
committed by GitHub
parent 7204ba657b
commit 210d5e2a5e
35 changed files with 49 additions and 97 deletions

View File

@@ -3,11 +3,10 @@ import { Astal, Gtk } from 'astal/gtk3';
import { WindowProps } from 'astal/gtk3/widget';
import { Opt } from '../option';
import { Binding } from 'astal';
import { BindableChild } from 'astal/gtk3/astalify';
export interface DropdownMenuProps extends WindowProps {
name: string;
child?: BindableChild | BindableChild[];
child?: JSX.Element | JSX.Element[];
layout?: string;
transition?: Gtk.RevealerTransitionType | Binding<Gtk.RevealerTransitionType>;
exclusivity?: Astal.Exclusivity;

View File

@@ -5,7 +5,7 @@ import { Gtk } from 'astal/gtk3';
export type PopupWindowProps = {
name: string;
child?: BindableChild | BindableChild[];
child?: JSX.Element | JSX.Element[];
layout?: Layouts;
transition?: Transition | Binding<Transition>;
exclusivity?: Exclusivity;