mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +01:00
fix: set margins
This commit is contained in:
parent
274df41748
commit
ac8a5f8175
3 changed files with 7 additions and 6 deletions
8
dzgui.sh
8
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
|
||||
version=5.0.0.rc-39
|
||||
version=5.0.0.rc-40
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
@ -548,10 +548,10 @@ fetch_dzq(){
|
|||
fetch_helpers_by_sum(){
|
||||
declare -A sums
|
||||
sums=(
|
||||
["ui.py"]="2c7b337afc5abc8be83bf3c62e043e71"
|
||||
["ui.py"]="ff29782f8e6dbc21ffe7c2d620198bfd"
|
||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||
["funcs"]="1396887afe48f16096089395914a417d"
|
||||
["funcs"]="9d5d376c585a1c34db388cb2c068aa8b"
|
||||
)
|
||||
local author="aclist"
|
||||
local repo="dztui"
|
||||
|
@ -824,7 +824,7 @@ initial_setup(){
|
|||
steam_deps
|
||||
migrate_files
|
||||
stale_symlinks
|
||||
fetch_helpers > >(pdialog "Checking helper files")
|
||||
# fetch_helpers > >(pdialog "Checking helper files")
|
||||
local_latlon
|
||||
is_steam_running
|
||||
is_dzg_downloading
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
version=5.0.0.rc-39
|
||||
version=5.0.0.rc-40
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
|
|
@ -16,7 +16,7 @@ locale.setlocale(locale.LC_ALL, '')
|
|||
gi.require_version("Gtk", "3.0")
|
||||
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
|
||||
|
||||
# 5.0.0-rc.39
|
||||
# 5.0.0-rc.40
|
||||
app_name = "DZGUI"
|
||||
|
||||
cache = {}
|
||||
|
@ -1520,6 +1520,7 @@ class FilterPanel(Gtk.Box):
|
|||
self.connect("button-release-event", self._on_button_release)
|
||||
self.set_orientation(Gtk.Orientation.VERTICAL)
|
||||
set_surrounding_margins(self, 10)
|
||||
self.set_margin_top(1)
|
||||
|
||||
self.filters_label = Gtk.Label(label="Filters")
|
||||
|
||||
|
|
Loading…
Reference in a new issue