From 9162deabacc8fa4310cd610fc125f8ac6f9f343a Mon Sep 17 00:00:00 2001 From: einarr Date: Mon, 16 Oct 2006 20:16:50 +0000 Subject: [PATCH] Updated icon. --- icons/table_size.png | Bin 0 -> 780 bytes icons/table_size.svg | 346 +++++++++++++++++++++++++++++++++++++++++++ system/fluents.py | 4 +- 3 files changed, 348 insertions(+), 2 deletions(-) create mode 100644 icons/table_size.png create mode 100644 icons/table_size.svg diff --git a/icons/table_size.png b/icons/table_size.png new file mode 100644 index 0000000000000000000000000000000000000000..b255ea0e76ddf1252961601e770435bc7359cb69 GIT binary patch literal 780 zcmeAS@N?(olHy`uVBq!ia0y~yU=RUe4mJh`hTcwDUIqpRmSQK*5DpFwjv9`X4h9AW z$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@`?%nC5x9IEGmC=1$q2cf~=Z z?f=dSncKTP&2*$EO=#Gmvxq@Ug=x{k1zgj+l!B`6HEe$<>kv|M!Nn_KvVuy>Boh`V zv+1!1sz0tvKNoQRhTi|h?>}E$pKN?WU0*<5?4NO1GRt2HoeO?`N96D9T)WPE`LmiQ zkK5-aci!B|6=!$tpFqC(>K(SC4~vXTKl#T`dd@E&6BWDn{|WcFy;XnRlsdImEZ^Ex z5cSQ_yY$NCg_F%Cu3Pf=G=31A%kGurEo@W?`D%qFJeacB!9jp3maAD1>b;oT+8oxojqkV4 z58$pV=HwPMqBDc1K{c%hAn-N2a=*P&WBz%5~_-A4lcY$oL=h$TV$4vz>orTxt zGCa-OZ+q5%*IvihpX1&sXU^i@X|g9PtWLlDZ{limnL9S8cV8^HBq&#Q`Ok;&Ia{}_ zcx*g3FDGSj;_~a)@^pS4j>}iC_?46R?oex`dVKtS>AbBTYuB1`$6x;zR;{x3Y2((^ zT7yj8maPS5TUh+2O*OjKo?cu2*)T9LFnGH9xvX + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/system/fluents.py b/system/fluents.py index 007ba6d..c20ef75 100755 --- a/system/fluents.py +++ b/system/fluents.py @@ -88,7 +88,7 @@ class ViewFrameToolButton (gtk.ToolItem): def __init__(self): gtk.ToolItem.__init__(self) - fname = os.path.join(ICONDIR, "move.png") + fname = os.path.join(ICONDIR, "table_size.png") image = gtk.Image() image.set_from_file(fname) @@ -186,7 +186,7 @@ class FluentApp: """Sets the plot in the currently active ViewFrame. If the plot is already shown in another ViewFrame it will be moved from there.""" # Set current selection in the plot before showing it. - plot.selection_changed(self.project.get_selection()) + plot.selection_changed(None, self.project.get_selection()) self['main_view'].insert_view(plot) self._update_toolbar(plot)