We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change the "label" property to include the file name somehow (suggestion: create a "file" property in the TextEditor instance)
local tab_label = Gtk.Label({ visible = true, label = "Tab"}) local close_button = Gtk.Button({ visible = true, relief = Gtk.ReliefStyle.NONE, Gtk.Image({ visible = true, icon_name = "window-close-symbolic"}) }) })
suggested changes:
+ function TextEditor.new(content, file_name) local self = {} self.content = content or "" + self.file_name = file_name ...
The text was updated successfully, but these errors were encountered:
TsukiGva2
No branches or pull requests
Tabs are just placeholders atm, changing "Label" property should work
Also, "Save File" button should keep saving to the same opened file name
at notebook.lua
Change the "label" property to include the file name somehow
(suggestion: create a "file" property in the TextEditor instance)
at text_editor.lua
suggested changes:
The text was updated successfully, but these errors were encountered: