Ishan Jindal

Results 24 comments of Ishan Jindal

Example: the "Timer" symbol is not present in this repo, as I can see

@tphinney any update on the situation please? Or could you give some insight on how i can create symbols using your font file(s)? Edit: How can I create the *SVGs*...

Okay, I can see some new files are added, but it still sums up to 2095 icons I believe some symbols are still missing. ![image](https://user-images.githubusercontent.com/86649457/177906687-3483156a-7fe3-48d0-b772-c67c0709062a.png) I have 2 concerns: -...

Here is a clearer version of the recording: | Native Scrollbar| CTk Scrollbar | | :----------------: | :-------------: | | | | Yes, i believe the rendering is not smooth,...

I just changes this line: ```python self.scrollbar = ttk.Scrollbar(self, orient="vertical", command=self.canvas.yview) ``` to this: ```python self.scrollbar = ctk.CTkScrollbar(self, orientation="vertical", command=self.canvas.yview, fg_color=ColorPalette.black_3, scrollbar_color=ColorPalette.black_4, scrollbar_hover_color=ColorPalette.black_5, width=30, corner_radius=10) ``` ## Code: it is...

you mean packing an example app in exe file? This code works in windows 11: ```python from ctypes import windll from tkinter import ttk import tkinter as tk from win32api...

I don't understand how padding will work for multiple sides. Could you give some logic insight?

@felipetesc Update: I have been working on it recently, and much of the "padding" functionality has been implemented, but there one single problem: rounded corners on divider are lost. What...