-
Notifications
You must be signed in to change notification settings - Fork 460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for Gnome Shell 46 #2146
Merged
vanvugt
merged 12 commits into
micheleg:master
from
sergio-costas:update_to_gnome_shell_46
Mar 20, 2024
Merged
Update for Gnome Shell 46 #2146
vanvugt
merged 12 commits into
micheleg:master
from
sergio-costas:update_to_gnome_shell_46
Mar 20, 2024
Commits on Mar 18, 2024
-
add_actor() has been removed after being deprecated, and it must be replaced with add_child(). Also, there are two add methods that also have to be changed.
Configuration menu - View commit details
-
Copy full SHA for da38b12 - Browse repository at this point
Copy the full SHA da38b12View commit details -
Fix hover highlight in Gnome Shell 45
Also remove addActor(), because it was used in a single element.
Configuration menu - View commit details
-
Copy full SHA for 9b037f8 - Browse repository at this point
Copy the full SHA 9b037f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a657eb - Browse repository at this point
Copy the full SHA 6a657ebView commit details -
There is a property, DockManager.spacing, that isn't defined anywhere, but is used when calling two methods inside (maybeAdjustBoxToDock and maybeAdjustBoxSize). The result is that these methods are being called with an undefined variable, and they use its value to calculate the position of a box, thus resulting in invalid allocation values. This patch fixes this by ensuring that any invalid value in the parameter will be converted to zero. Another possibility would be to fully remove the parameter, since it seems neither to be set the parameter anyhwere, nor to be called those functions from any other place.
Configuration menu - View commit details
-
Copy full SHA for aadd53b - Browse repository at this point
Copy the full SHA aadd53bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e4a84f2 - Browse repository at this point
Copy the full SHA e4a84f2View commit details -
This patch fixes the placement error in the app icons
Configuration menu - View commit details
-
Copy full SHA for 4191811 - Browse repository at this point
Copy the full SHA 4191811View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68e0203 - Browse repository at this point
Copy the full SHA 68e0203View commit details -
Configuration menu - View commit details
-
Copy full SHA for de35ab6 - Browse repository at this point
Copy the full SHA de35ab6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f6d27c - Browse repository at this point
Copy the full SHA 5f6d27cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3759956 - Browse repository at this point
Copy the full SHA 3759956View commit details -
windowPreview: Use set_child instead of add_child
While it's safe to use either in GNOME 46, it is not always safe to use (clutter_actor_)add_child directly in GNOME 45. Because the notification StBin requires to update its internal state wasn't added until gnome-shell@ed3b8d093e introduced in 46.alpha. At least (st_bin_)set_child remains the same in all GNOME versions, and is what the old (clutter_container_)add_actor used to call in GNOME 45. There may be other places where we need to change add_child to set_child for backward compatibility with StBin, but if they exist then they're not causing problems yet. Closes: https://bugs.launchpad.net/bugs/2056506 Fixes: 4945dbf
Configuration menu - View commit details
-
Copy full SHA for 42ee745 - Browse repository at this point
Copy the full SHA 42ee745View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8349757 - Browse repository at this point
Copy the full SHA 8349757View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.