-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Empty state for a language popover
- Loading branch information
Andrey Maksimov
committed
Dec 22, 2023
1 parent
c1c1b05
commit 8f990c1
Showing
4 changed files
with
90 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
using Gtk 4.0; | ||
|
||
template $LanguagePopoverRow : Gtk.ListBoxRow { | ||
child: Box { | ||
spacing: 6; | ||
styles ["language_popover_row"] | ||
|
||
Label title { | ||
xalign: 0; | ||
} | ||
Box { | ||
spacing: 6; | ||
|
||
Image selection { | ||
icon-name: "object-select-symbolic"; | ||
visible: false; | ||
} | ||
}; | ||
Label title { | ||
xalign: 0; | ||
hexpand: true; | ||
} | ||
|
||
Image selection { | ||
icon-name: "object-select-symbolic"; | ||
visible: false; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters