summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorlotation2023-05-05 21:52:22 +0200
committerlotation2023-05-05 21:52:22 +0200
commit83282d1ce9484726e510bfbb2792e86e4604c8dc (patch)
tree39d648b379cd8bbd88a32474b11bf9af229c9b06
parent29de50fdb597b04ece1f64b1565eb9a1cbf1793a (diff)
downloadaur-83282d1ce9484726e510bfbb2792e86e4604c8dc.tar.gz
removed bottles.patch since it is no longer needed
-rw-r--r--bottles.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/bottles.patch b/bottles.patch
deleted file mode 100644
index ff8021b11d00..000000000000
--- a/bottles.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -ruN Bottles-51.5.orig/bottles/frontend/views/bottle_details.py Bottles-51.5/bottles/frontend/views/bottle_details.py
---- Bottles-51.5.orig/bottles/frontend/views/bottle_details.py 2023-02-24 04:47:30.000000000 +0100
-+++ Bottles-51.5/bottles/frontend/views/bottle_details.py 2023-03-15 09:32:35.023331747 +0100
-@@ -160,7 +160,8 @@
-
- gtk_context = self.drop_overlay.get_style_context()
- Gtk.StyleContext.add_class(gtk_context, "dragndrop_overlay")
-- self.style_provider.load_from_data(b".dragndrop_overlay { background: rgba(41, 65, 94, 0.2);}")
-+ style_data = ".dragndrop_overlay { background: rgba(41, 65, 94, 0.2);}"
-+ self.style_provider.load_from_data(style_data, len(style_data))
- Gtk.StyleContext.add_provider(
- gtk_context,
- self.style_provider,
-diff -ruN Bottles-51.5.orig/bottles/frontend/windows/installer.py Bottles-51.5/bottles/frontend/windows/installer.py
---- Bottles-51.5.orig/bottles/frontend/windows/installer.py 2023-02-24 04:47:30.000000000 +0100
-+++ Bottles-51.5/bottles/frontend/windows/installer.py 2023-03-15 09:32:35.028331794 +0100
-@@ -96,7 +96,8 @@
- def __init__(self, window, config, installer, **kwargs):
- super().__init__(**kwargs)
- self.set_transient_for(window)
-- self.style_provider.load_from_data(b"progressbar { line-height: 2.0; }")
-+ style_data = "progressbar { line-height: 2.0; }"
-+ self.style_provider.load_from_data(style_data, len(style_data))
- Gtk.StyleContext.add_provider(
- self.progressbar.get_style_context(),
- self.style_provider,