File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ SPDX-License-Identifier: CC-BY-4.0
9
9
10
10
# Changelog of Fly-Pie
11
11
12
+ ## [ unreleased]
13
+
14
+ ** Release Date:** TBD
15
+
16
+ #### Bug Fixes
17
+
18
+ - Fixed selecting items on GNOME 46 requiring two clicks.
19
+
12
20
## [ Fly-Pie 25] ( https://github.com/schneegans/fly-pie/releases/tag/v25 )
13
21
14
22
** Release Date:** 2024-02-27
Original file line number Diff line number Diff line change @@ -726,7 +726,6 @@ class MenuItem extends Clutter.Actor {
726
726
if ( this . _trace . get_height ( ) != MenuItemSettings . traceThickness + 2 ) {
727
727
this . _trace . set_height ( MenuItemSettings . traceThickness + 2 ) ;
728
728
this . _trace . set_translation ( 0 , - this . _trace . get_height ( ) / 2 , 0 ) ;
729
- this . _trace . get_content ( ) . set_size ( 1 , MenuItemSettings . traceThickness + 2 ) ;
730
729
}
731
730
732
731
// Fade-in the trace it it's currently invisible.
@@ -1011,7 +1010,7 @@ class MenuItem extends Clutter.Actor {
1011
1010
1012
1011
// We also re-draw the trace line to the currently active child if there is any.
1013
1012
if ( this . _trace != undefined ) {
1014
- this . _trace . get_content ( ) . invalidate ( ) ;
1013
+ this . _trace . queue_repaint ( ) ;
1015
1014
}
1016
1015
1017
1016
// Compute the icon container's size and position. We use the maximum size of all icon
You can’t perform that action at this time.
0 commit comments