mirror of
https://github.com/morgan9e/warehouse
synced 2026-04-14 00:04:08 +09:00
Add a clamp to the orphans window
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="4" y="8" width="5" height="1" fill="white"/>
|
||||
<rect x="4" y="10" width="3" height="1" fill="white"/>
|
||||
<rect x="2" y="2" width="12" height="12" rx="2" stroke="white" stroke-width="2"/>
|
||||
<rect x="2" y="2" width="12" height="4" rx="2" stroke="white" stroke-width="2"/>
|
||||
<rect x="7" y="3" width="2" height="4" fill="white"/>
|
||||
<rect x="4" y="8" width="5" height="1" fill="black"/>
|
||||
<rect x="4" y="10" width="3" height="1" fill="black"/>
|
||||
<rect x="2" y="2" width="12" height="12" rx="2" stroke="black" stroke-width="2"/>
|
||||
<rect x="2" y="2" width="12" height="4" rx="2" stroke="black" stroke-width="2"/>
|
||||
<rect x="7" y="3" width="2" height="4" fill="black"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 429 B After Width: | Height: | Size: 429 B |
Binary file not shown.
@@ -232,11 +232,13 @@ class FlattoolGuiWindow(Adw.ApplicationWindow):
|
||||
orphans_window.set_modal(True)
|
||||
orphans_window.set_resizable(True)
|
||||
orphans_window.set_transient_for(self)
|
||||
orphans_clamp = Adw.Clamp()
|
||||
orphans_scroll = Gtk.ScrolledWindow()
|
||||
orphans_toast_overlay = Adw.ToastOverlay()
|
||||
orphans_stack = Gtk.Stack()
|
||||
orphans_overlay = Gtk.Overlay()
|
||||
orphans_stack.add_child(orphans_overlay)
|
||||
orphans_stack.add_child(orphans_clamp)
|
||||
orphans_clamp.set_child(orphans_overlay)
|
||||
orphans_toast_overlay.set_child(orphans_stack)
|
||||
|
||||
orphans_progress_bar = Gtk.ProgressBar(visible=False, pulse_step=0.7)
|
||||
|
||||
Reference in New Issue
Block a user