File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
app/lib/features/geckoview/features/bookmarks/presentation/screens Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -180,10 +180,11 @@ class BookmarkEntryEditScreen extends HookConsumerWidget {
180180 final isSelected = item.data? .guid == parentGuid.value;
181181
182182 return Padding (
183- padding: const EdgeInsets .only (right: 16 .0 ),
183+ padding: const EdgeInsets .only (right: 42 .0 ),
184184 child: switch (item.data) {
185185 final BookmarkFolder folder => ListTile (
186186 key: ValueKey (folder.guid),
187+ contentPadding: EdgeInsets .zero,
187188 selected: isSelected,
188189 leading: (item.isExpanded)
189190 ? const Icon (MdiIcons .folderOpen)
Original file line number Diff line number Diff line change @@ -178,7 +178,9 @@ class BookmarkListScreen extends HookConsumerWidget {
178178 ),
179179 final BookmarkFolder folder => Padding (
180180 key: ValueKey (folder.guid),
181- padding: const EdgeInsets .only (right: 42.0 ),
181+ padding: (item.isLeaf)
182+ ? const EdgeInsets .only (right: 4.0 )
183+ : const EdgeInsets .only (right: 42.0 ),
182184 child: HookBuilder (
183185 builder: (context) {
184186 final controller = useMenuController ();
You can’t perform that action at this time.
0 commit comments