diff --git a/docs/Hapiest Paper 2018/main.tex b/docs/Hapiest Paper 2018/main.tex index b723e3d..b38f5c9 100644 --- a/docs/Hapiest Paper 2018/main.tex +++ b/docs/Hapiest Paper 2018/main.tex @@ -539,8 +539,7 @@ \subsection{Binary Distributions} \section{Features} \begin{figure*}[t] - \centering - \includegraphics[width=\textwidth]{xsc_graph_display.png} + \centering\includegraphics[width=5in]{xsc_graph_display.png} \caption{A screenshot of a graph display window in HAPIEST. In this example there are 3 cross sections of CFC-11 on the plot. } \label{fig:xsc_graph} diff --git a/src/widgets/main_window_gui.py b/src/widgets/main_window_gui.py index 3f3a8bd..454eadd 100644 --- a/src/widgets/main_window_gui.py +++ b/src/widgets/main_window_gui.py @@ -155,6 +155,7 @@ def populate_table_lists(self, data_names=None): """ if data_names == None: data_names = list(get_all_data_names()) + print(data_names) non_xsc_data = list(data for data in data_names if not data.endswith(".xsc")) # self.view_widget.table_name.clear() diff --git a/src/worker/work_request.py b/src/worker/work_request.py index f94c96f..a540b73 100644 --- a/src/worker/work_request.py +++ b/src/worker/work_request.py @@ -368,8 +368,7 @@ def save_table(table: Dict[str, Any], name: str, **kwargs): @staticmethod def get_all_table_names() -> List[str]: l = list(tableList()) - l.append(list(LOCAL_XSC_CACHE.keys())) - return l + return l + list(LOCAL_XSC_CACHE.keys()) @staticmethod def table_meta_data(table_name: str):